List all pipelines triggered by a pipeline schedule
GET
/api/v4/projects/{id}/pipeline_schedules/{pipeline_schedule_id}/pipelines
Lists all pipelines triggered by a pipeline schedule in a project.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Query Parameters
Section titled “Query Parameters”page
integer
Current page number
Example
1per_page
integer
Number of items per page
Example
20scope
string
The scope of pipelines
Example
pendingstatus
string
The status of pipelines
Example
pendingupdated_before
string format: date-time
Return pipelines updated before the specified datetime. Format: ISO 8601 YYYY-MM-DDTHH:MM:SSZ
Example
2015-12-24T15:51:21.880Zupdated_after
string format: date-time
Return pipelines updated after the specified datetime. Format: ISO 8601 YYYY-MM-DDTHH:MM:SSZ
Example
2015-12-24T15:51:21.880Zcreated_before
string format: date-time
Return pipelines created before the specified datetime. Format: ISO 8601 YYYY-MM-DDTHH:MM:SSZ
Example
2015-12-24T15:51:21.880Zcreated_after
string format: date-time
Return pipelines created after the specified datetime. Format: ISO 8601 YYYY-MM-DDTHH:MM:SSZ
Example
2015-12-24T15:51:21.880Zsort
string
Sort pipelines
Example
descResponses
Section titled “Responses”OK
Media typeapplication/json
object
id
integer format: int64
iid
integer
project_id
integer format: int64
sha
string
ref
string
status
string
source
string
created_at
string format: date-time
updated_at
string format: date-time
web_url
string
Example
{ "id": 1, "iid": 2, "project_id": 3, "sha": "0ec9e58fdfca6cdd6652c083c9edb53abc0bad52", "ref": "feature-branch", "status": "success", "source": "push", "created_at": "2022-10-21T16:49:48.000+02:00", "updated_at": "2022-10-21T16:49:48.000+02:00", "web_url": "https://gitlab.example.com/gitlab-org/gitlab-foss/-/pipelines/61"}Bad Request
Unauthorized
Forbidden
Not found