Start typing to search.

API Reference

Get a job run

View Markdown
GET /api/job-runs/{id}

Get a job run

Operation IDgetJobRun

Authentication

  • BearerAuth·http bearer·API key token (envoy_<hex>). Create keys from Settings → API Keys — see Using the API.

Path parameters

idintegerrequired

Resource ID

Success response body

200Job run details

Job run details

Content typeapplication/json

responseobject
12 properties
idinteger
job_idinteger
statusstring
started_atstring | null · date-time
completed_atstring | null · date-time
duration_msinteger | null
error_messagestring | null
selected_tasksstring | null

JSON-encoded array of task keys to run (null = all)

run_statestring | null

Internal DAG execution state (JSON)

skip_depsinteger | null

1 when selected tasks should run without their upstream depends_on tasks; 0/null otherwise.

created_atstring · date-time
updated_atstring · date-time

Error responses

404Resource not found

Resource not found

Content typeapplication/json

responseobject
2 properties
errorstring
messagestring
Example response
{
  "error": "NOT_FOUND",
  "message": "Resource not found"
}