Get job
Get job
Retrieve details for a specific job.
GET
Get job
Returns the full details for a job, including status history and payload.
Authorizations
API key prefixed with sk_. Example: Authorization: Bearer sk_xxx
Headers
API version
Path Parameters
Job ID
Response
Success
Example:
{
"id": "job_01JABCD123",
"organization_id": "org_01JABCD123",
"project_id": "prj_01JABCD123",
"type": "overlay.generate",
"status": "COMPLETED",
"target_type": "Block",
"target_id": "blk_01JABCD123",
"parent_id": null,
"payload": {
"type": "Block",
"old_id": "blk_01JABCD100",
"new_id": "blk_01JABCD200"
},
"events": [
{
"status": "PENDING",
"timestamp": "2024-06-17T08:55:00Z"
},
{
"status": "RUNNING",
"timestamp": "2024-06-17T08:55:02Z"
},
{
"status": "COMPLETED",
"timestamp": "2024-06-17T08:56:30Z"
}
],
"created_at": "2024-06-17T08:55:00Z",
"updated_at": "2024-06-17T08:56:30Z"
}