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.
| Method | Path | Summary | Key params | Response |
|---|---|---|---|---|
| GET | /jobs | List async jobs (active + recent history) | limit (path:[‘integer’, ‘null’]) | (no body) |
| POST | /jobs/batch | Enqueue autofill jobs for many DLUs | body: BatchJobsRequest | (no body) |
| DELETE | /jobs/{id} | Cancel a queued job | id (path:integer) | (no body) |
| GET | /jobs/{id} | Get a single job by id | id (path:integer) | (no body) |
Examples
Section titled “Examples”Poll a job
curl -H "X-API-Key: $API_KEY" "$ARCHAIC/jobs/{job_id}"