Skip to content

Jobs API

Long-running operations (autofill, libro segmentation, bulk ops) return a job id immediately. Poll these endpoints to check status, fetch the result payload when done, or cancel an in-flight run.

MethodPathSummaryKey paramsResponse
GET/jobsList async jobs (active + recent history)limit (path:[‘integer’, ‘null’])(no body)
POST/jobs/batchEnqueue autofill jobs for many DLUsbody: BatchJobsRequest(no body)
DELETE/jobs/{id}Cancel a queued jobid (path:integer)(no body)
GET/jobs/{id}Get a single job by idid (path:integer)(no body)

Poll a job

Terminal window
curl -H "X-API-Key: $API_KEY" "$ARCHAIC/jobs/{job_id}"