Start typing to search.

API Reference

Get a job

View Markdown
GET /api/jobs/{id}

Returns the job with resolved connector info, template name, and DAG. The DAG is derived from the job's snapshotted template YAML (captured at job creation time), not the live template.

Operation IDgetJob

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 with resolved details

Job with resolved details

Content typeapplication/json

responseobject
12 properties
idinteger
job_template_idinteger
namestring
descriptionstring | null
connector_mappingobject
Additional properties
valueinteger
statusstring
overridden_task_keysarray<string>

DAG node keys with a per-job task YAML override. Present on GET detail.

Array items
itemstring
created_atstring · date-time
updated_atstring · date-time
resolved_connectorsobject
Additional properties
valueobject
3 properties
idinteger
namestring
typestring
template_namestring | null
dagobject | null

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"
}