v1

latestOpenAPI 3.0.02026-07-26432882.9 KB
Batch Operations

List all batch jobs

Check current status of all running jobs. Note order is by most recently updated. All jobs attached to your token are listed here. Removed jobs won't be listed unless return_all=true.

get/batch/jobs

Query parameters

return_allboolean

Default false. By default the most recently updated 10 jobs will be returned from the past 31 days. If set to true, all jobs will be returned including those that have been removed.

Response

List of jobs

Example response

{
  "jobs": [
    {
      "job_type": "points",
      "job_uuid": "10e0a07f-f73e-4691-8292-598d087af69e",
      "status": "ready",
      "updated_at": "2025-02-28T06:08:51.849-05:00",
      "percent_complete": 100,
      "processed_count": 102
    }
  ]
}