Get pipelines and jobs

GET /pipelines/jobs

This is a combined operation to fetch pipelines and jobs in one request.

Responses

  • Hide response attributes Show response attributes object
    • jobs array[object]
      Hide jobs attributes Show jobs attributes array[object]
      • canceled boolean

        If the job was canceled

      • completed boolean

        If the job is completed

      • created string(date-time)

        When the job was created

      • end string(date-time)

        When the job was finished

      • errored boolean

        If the job had an error

      • id string(uuid4)

        Job id

      • Error message of last task that had an error

      • pipeline string

        Pipeline name

      • start string(date-time)

        When the job was started

      • tasks array[object]

        List of tasks in job (ordered topologically by dependencies and task name)

        Hide tasks attributes Show tasks attributes array[object]
        • dependsOn array[string]

          Task names this task depends on

        • end string(date-time)

          When the task was finished

        • error string

          Error message of task when an error occured

        • errored boolean

          If the task had an error

        • exitCode integer(int16)

          Exit code of command

        • name string

          Task name

        • skipped boolean

          If the task was skipped

        • start string(date-time)

          When the task was started

        • status string

          Status of task

          Values are waiting, running, skipped, done, error, or canceled.

      • user string

        User that scheduled the job

      • Assigned variables of job

        Hide variables attribute Show variables attribute object
    • pipelines array[object]
      Hide pipelines attributes Show pipelines attributes array[object]
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
    }
  ]
}