Pipeline
Get a pipeline's workflows
Returns a paginated list of workflows by pipeline ID.
get/pipeline/{pipeline-id}/workflow
Path parameters
pipeline-idstring uuid required
The unique ID of the pipeline.
Query parameters
page-tokenstring
A token to retrieve the next page of results.
Response
A paginated list of workflow objects.
Example response
{
"items": [
{
"pipeline_id": "5034460f-c7c4-4c43-9457-de07e2029e7b",
"auto_rerun_number": 1,
"name": "build-and-test",
"project_slug": "gh/CircleCI-Public/api-preview-docs",
"tag": "setup",
"max_auto_reruns": 5,
"pipeline_number": 25
}
]
}