Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save expiscornovus/e3b87786e97373e6992586f238156cd3 to your computer and use it in GitHub Desktop.
Save expiscornovus/e3b87786e97373e6992586f238156cd3 to your computer and use it in GitHub Desktop.
HTTP Retrieve Duplicated Bug WorkItems from Azure DevOps Extended Analytics OData feed
{
"inputs": {
"method": "GET",
"uri": "https://analytics.dev.azure.com/@{variables('Organisation')}/@{variables('Project')}/_odata/v2.0/workItems?$select=WorkItemId,Title,WorkItemType,State&$expand=Links($select=SourceWorkItemId,TargetWorkItemId,LinkTypeName)&$filter=WorkItemId eq @{variables('WorkItemId')}",
"authentication": {
"type": "Basic",
"username": "SomeRandomName",
"password": "@parameters('PersonalAccessToken_AzureDevOps')"
}
},
"description": "https://docs.microsoft.com/en-us/azure/devops/report/powerbi/client-authentication-options?view=azure-devops"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment