{ "opencollection": "1.0.0", "info": { "name": "Azure DevOps Artifacts Attachments Pipeline Runs API", "version": "7.1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Pipeline Runs", "type": "folder" }, "items": [ { "info": { "name": "Azure DevOps List pipeline runs", "type": "http" }, "http": { "method": "GET", "url": "https://feeds.dev.azure.com/{organization}/{project}/_apis/pipelines/:pipelineId/runs", "params": [ { "name": "api-version", "value": "", "type": "query", "description": "Azure DevOps REST API version. Use 7.1 for the latest stable version." }, { "name": "pipelineId", "value": "", "type": "path", "description": "Numeric ID of the pipeline" }, { "name": "$top", "value": "", "type": "query", "description": "Maximum number of runs to return" }, { "name": "continuationToken", "value": "", "type": "query", "description": "Continuation token for paginated results" } ] }, "docs": "Returns a list of runs (executions) for a specific pipeline. Includes the run state, result, timing, and template parameters used. Supports pagination through the continuationToken.\n" }, { "info": { "name": "Azure DevOps Run a pipeline", "type": "http" }, "http": { "method": "POST", "url": "https://feeds.dev.azure.com/{organization}/{project}/_apis/pipelines/:pipelineId/runs", "params": [ { "name": "api-version", "value": "", "type": "query", "description": "Azure DevOps REST API version. Use 7.1 for the latest stable version." }, { "name": "pipelineId", "value": "", "type": "path", "description": "Numeric ID of the pipeline" }, { "name": "pipelineVersion", "value": "", "type": "query", "description": "Specific version of the pipeline to run" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Triggers a new run of a pipeline. You can override template parameters, variables, the repository branch, and specify which stages to skip or include. The run is queued and executed when an agent becomes available.\n" }, { "info": { "name": "Azure DevOps Get a pipeline run", "type": "http" }, "http": { "method": "GET", "url": "https://feeds.dev.azure.com/{organization}/{project}/_apis/pipelines/:pipelineId/runs/:runId", "params": [ { "name": "api-version", "value": "", "type": "query", "description": "Azure DevOps REST API version. Use 7.1 for the latest stable version." }, { "name": "pipelineId", "value": "", "type": "path", "description": "Numeric ID of the pipeline" }, { "name": "runId", "value": "", "type": "path", "description": "Numeric ID of the pipeline run" } ] }, "docs": "Returns detailed information about a specific pipeline run, including its state, result, template parameters, variables used, and timing. Poll this endpoint to monitor run progress.\n" } ] } ], "bundled": true }