Get pipelines and jobs
This is a combined operation to fetch pipelines and jobs in one request.
GET
/pipelines/jobs
curl \
-X GET http://localhost:8080/pipelines/jobs
Response examples (default)
{
"jobs": [
{
"canceled": true,
"completed": true,
"created": "2023-05-04T09:42:00+00:00",
"end": "2023-05-04T09:42:00+00:00",
"errored": true,
"id": "string",
"lastError": "string",
"pipeline": "my_pipeline",
"start": "2023-05-04T09:42:00+00:00",
"tasks": [
{
"dependsOn": [
"string"
],
"end": "2023-05-04T09:42:00+00:00",
"error": "string",
"errored": true,
"exitCode": 42,
"name": "task_name",
"skipped": true,
"start": "2023-05-04T09:42:00+00:00",
"status": "waiting"
}
],
"user": "j.doe",
"variables": {
"tags": [
"foo",
"bar"
]
}
}
],
"pipelines": [
{
"pipeline": "my_pipeline",
"running": true,
"schedulable": true
}
]
}
Response examples (default)
{
"jobs": [
{
"canceled": true,
"completed": true,
"created": "2025-05-04T09:42:00Z",
"end": "2025-05-04T09:42:00Z",
"errored": true,
"id": "string",
"lastError": "string",
"pipeline": "my_pipeline",
"start": "2025-05-04T09:42:00Z",
"tasks": [
{
"dependsOn": [
"string"
],
"end": "2025-05-04T09:42:00Z",
"error": "string",
"errored": true,
"exitCode": 42,
"name": "task_name",
"skipped": true,
"start": "2025-05-04T09:42:00Z",
"status": "waiting"
}
],
"user": "j.doe",
"variables": {
"tags": [
"foo",
"bar"
]
}
}
],
"pipelines": [
{
"pipeline": "my_pipeline",
"running": true,
"schedulable": true
}
]
}