Pipelines /
List pipelines
Lists all pipelines for a project
Required permission
Project > Pipelines > General > Read
Path parameters
projectId
string requiredID of the project
Query parameters
per_page
integerThe number of results to display per request. Maximum of 100 results per page.page
integerThe page number to access.cursor
stringThe cursor returned from the previous page of results, used to request the next page.
Response body
- {object}Response object.
data
{object} requiredResult data.pipelines
[array] requiredAn array of pipelines in this project.- {object}A pipeline.
name
(multiple options: oneOf) requiredThe name of the pipeline.- stringThe name of the pipeline.min length3max length39pattern^[a-zA-Z]((-|\s)?[a-zA-Z0-9]+((-|\s)[a-zA-Z0-9]+)*)?$
- stringA string containing one or more references that resolve to the name of the pipeline.pattern.*\${.*}.*
description
(multiple options: oneOf)A description of the pipeline.- stringA description of the pipeline.max length200pattern^[a-zA-Z0-9.,?\s\\/'"()[\];`%^&*\-_:!]+$
- stringA string containing one or more references that resolve to a description of the pipeline.pattern.*\${.*}.*
id
string requiredIdentifier for the pipelinecreatedAt
stringtime of creationupdatedAt
stringtime of updatepagination
{object} requiredData about the endpoint pagination.hasNextPage
boolean requiredIs there another page of results available?cursor
stringThe cursor to access the next page of results.count
number requiredThe number of results returned by this request.
OR
OR
API
CLI
JS Client
GET /v1/projects/{projectId}/pipelines
Example response
200 OK
A list of pipelines belong to the project.
JSON
{
"data": {
"pipelines": [
{
"name": "example-pipeline",
"id": "example-pipeline"
}
]
},
"pagination": {
"hasNextPage": false,
"count": 1
}
}