Skip to content

The Job Summary Object

The job summary object is the slim representation returned by the List Jobs endpoint. It is useful for job history, dashboards, and reconciliation. Fetch a single Job Object when you need the full result or error payload.

{
"jobId": "job_01HY3K4M7QR9VP2N8WYJF5GTB",
"jobType": "screen_analysis",
"status": "succeeded",
"triggerType": "manual",
"createdAt": "2026-04-15T12:00:00Z",
"updatedAt": "2026-04-15T12:00:12Z"
}
FieldTypeDescription
jobIdstringStable job id. Use with Get Job.
jobTypestringJob type discriminator. v1 defines screen_analysis.
statusstringOne of running, succeeded, or failed.
triggerTypestringmanual for API/dashboard-submitted work or automatic for platform-created work.
createdAtstringISO 8601 UTC timestamp of when the job was submitted.
updatedAtstringISO 8601 UTC timestamp of the last status transition.