skip to Main Content

Query WorkItems Between Builds and convert it into a excel file from on-prem Azure DevOps Server through Azure DevOps REST API

I want list of the workItems that is changed after build in excel file. So far I am here : $AzureDevOpsPAT = "**********************************" $fromBuildId = "161" $toBuildId = "176" $AzureDevOpsAuthenicationHeader = @{Authorization = 'Basic ' + [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(":$($AzureDevOpsPAT)")) } $uriAccount ="https://AzureDevOpsServerName/DefaultCollection/ProjectName/_apis/build/workitems?fromBuildId=$($fromBuildId)&toBuildId=$($toBuildId)&api-version=5.0"…

VIEW QUESTION

Azure bearer token lifetime

I have a python code to call a graph API and browse directory on sharepoint. The directory has 120GB of files and needs hours to scan. However, what I have observed is the script just shows as running on Visual…

VIEW QUESTION
Back To Top
Search