Get job details

GET /job/detail

Get details about a single job.

Query parameters

  • id string Required

    Job id

Responses

  • Hide response attribute Show response attribute object
  • Hide response attributes Show response attributes 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
GET /job/detail
curl \
 -X GET http://localhost:8080/job/detail?id=52a5cb79-7556-4c52-8e6f-dd6aaf1bc4c8
Response examples (400)
{
  "error": "string"
}
Response examples (400)
{
  "error": "string"
}
Response examples (default)
{
  "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"
    ]
  }
}
Response examples (default)
{
  "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"
    ]
  }
}