v1

latestOpenAPI 3.0.0CoreStack Inc License2026-07-248001,5071.7 MB
Azure DevOps Pipeline DashBoard

List the available builds under pipelines in AzureDevops

List the available builds under pipelines in AzureDevops

post/v1/azure-devops/dashboard/builds/list

Request body

service_account_idstring required

Service Account ID

project_idstring required

Azure Devops Project ID

pipeline_idinteger required

Azure Devops Pipeline ID

status'all' | 'cancelling' | 'completed' | 'inProgress' | 'notStarted' | 'postponed'

Filter the list of builds response based on the status

query_order'finishTimeAscending' | 'finishTimeDescending' | 'queueTimeAscending' | 'queueTimeDescending' | 'startTimeAscending' | 'startTimeDescending'

Criteria to sort the builds in the response

searchstring

filter the build response with the provided search keyword

Example request

{
  "status": "all",
  "query_order": "finishTimeAscending"
}

Response

Success

Example response

{
  "builds": [
    {
      "status": "all",
      "result": "canceled"
    }
  ]
}