View all connectors

Azure DevOps Repositories

By integrating Azure DevOps Repositories with DX, you can analyze pull requests and repositories. Please refer to the API documentation below and our schema explorer to see what data DX imports—note that DX does not read or access your source code.

In addition to the Azure DevOps Repositories connector, you can set up additional connectors for Azure DevOps Boards, Azure DevOps Pipelines, Azure DevOps Pull Commits, and Azure DevOps Commits (Default branch). Each Azure DevOps credential in DX should utilize a separate service account and API token to avoid rate limit issues.

Prerequisites

To connect Azure DevOps to DX, you need:

  • an ADO service account
  • personal access token (PAT) with expiration date

Setup instructions

Follow the steps below to connect Azure DevOps Repositories to DX.

Data connection

Step 1

  1. Go to the Azure portal and create a service account in Microsoft Entra ID (formerly Azure Active Directory).
  2. Then, assign the service account to an ADO organization and grant them permissions.

Step 2

  1. Log into ADO using the service account
  2. Generate a Personal Access Token with the read permissions outlined below:
Permissions
- Code (read)
- Graph (read)
- Identity (read)
- Project and Team (read)
- Release (read)
- Task Groups (read)

Step 3

  • Navigate to the connections page in DX and select “+ Connection” in the top right.
  • Enter the credentials you have generated in the previous steps—refer to the information below for errors and troubleshooting.

Webhooks

DX supports Azure DevOps webhooks ingestion to sync pull request data in real-time. This is recommended in order to ensure real-time data accuracy in DX.

You can enable webhooks via the Azure DevOps API, or through the UI.

API-based setup

Run the CURL command three times for each project where you want to enable webhooks—once each for git.pullrequest.created, git.pullrequest.updated, and git.pullrequest.merged:

curl --location 'https://dev.azure.com/${your_organization}/_apis/hooks/subscriptions?api-version=7.1' \
--header 'Authorization: Basic ${token}' \\
--data-raw '{
    "consumerActionId": "httpRequest",
    "consumerId": "webHooks",
    "consumerInputs": {
        "url": "${your_url}/webhooks/ado",
        "httpHeaders": "X-ADO-Signature:${webhook_token}" # Replace this token with webhooks secret from DX, found on the Connections admin page
    },
    "eventType": "git.pullrequest.created",
    "publisherId": "tfs",
    "publisherInputs": {
        "repository": "",
        "branch": "",
        "pullrequestCreatedBy": "",
        "pullrequestReviewersContains": "",
        "projectId": "${project_id}",
    },
    "resourceVersion": "1.0",
    "scope": 1
}'

UI-based setup

To enable webhooks via the UI:

  1. Navigate to Project Settings > Service Hooks
  2. Click the ”+” icon and choose Service “Webhooks” to add a new webhook.
  3. Here’s what your settings should look like:

API reference

The table below lists the specific API endpoints that are used by DX.

Endpoint Documentation
/graph/users Link
/projects Link
/projects/{projectId}/teams Link
/projects/{projectId}/teams/{teamId}/members Link
/git/repositories?project= Link
/git/repositories/{repoId}/pullrequests Link
/git/repositories/{repoId}/pullrequests/ Link
/git/repositories/{repoId}/pullrequests/{id}/iterations Link
/git/repositories/{repoId}/pullrequests/{id}/iterations/{id}/changes Link
/git/repositories/{repoId}/pullrequests/{id}/threads Link
/git/repositories/{repoId}/pullrequests/{id}/workitems Link

Curl commands

When DX verifies an Azure DevOps Repositories connection, it checks specific endpoints to ensure proper access. If your connection is failing, you can test these endpoints directly using the curl commands below to troubleshoot the issue.

Replace YOUR_ORGANIZATION and YOUR_PAT with your actual values before running these commands.

1. Test Project Access

This verifies that your service account can access project information:

curl -u :YOUR_PAT -H 'Accept: application/json' 'https://dev.azure.com/YOUR_ORGANIZATION/_apis/projects?api-version=7.0'

2. Test User Access

This verifies that your service account can access user information:

curl -u :YOUR_PAT -H 'Accept: application/json' 'https://dev.azure.com/YOUR_ORGANIZATION/_apis/graph/users?api-version=7.0'

3. Test Repositories

Replace YOUR_PROJECT_ID with a valid project ID to verify repository access:

curl -u :YOUR_PAT -H 'Accept: application/json' 'https://dev.azure.com/YOUR_ORGANIZATION/_apis/git/repositories?projectId=YOUR_PROJECT_ID&api-version=7.0'

If you receive a 401 Unauthorized error, your credentials are invalid. If you receive a 403 Forbidden error, your token doesn’t have the required permissions. If you receive a 404 Not Found error or empty results, check that your organization name is correct.

Note about Authentication: The -u :YOUR_PAT flag uses curl’s built-in basic authentication with an empty username and your Personal Access Token as the password. This automatically handles the Base64 encoding required for Azure DevOps authentication.

Errors

The table below lists potential error codes when adding a connection in DX.

Error Description
invalid_credentials Your API credentials entered are not valid.
invalid_permissions Your API token does not have the permissions required by DX.
no_resources DX cannot access any projects or repositories.

Data Cloud API

Once the initial connection is created successfully, Azure DevOps credentials can be managed via the Data Cloud API.

Credential fields

Field Type Description
secrets.personal_access_token String An Azure DevOps Personal Access Token with the required scopes.
{
  "id": 456,
  "secrets": {
    "personal_access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
  }
}