v34

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-09194386949.7 KB
V2
Batches

List Batches

List batches for the current project.

get/api/v2/batches

Query parameters

project_idstring uuid nullable
organization_idstring uuid nullable
page_sizeinteger nullable
page_tokenstring nullable
created_at_on_or_afterstring date-time nullable
created_at_on_or_beforestring date-time nullable
status'PENDING' | 'THROTTLED' | 'RUNNING' | 'COMPLETED' | 'FAILED' | 'CANCELLED' nullable
source_directory_idstring nullable

Cookies

sessionstring nullable

Response

Successful Response

next_page_tokenstring nullable

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.

total_sizeinteger nullable

The total number of items available. This is only populated when specifically requested. The value may be an estimate and can be used for display purposes only.

Example response

{
  "items": [
    {
      "config": {
        "job": {
          "configuration_id": "cfg-PARSE_AGENTIC"
        }
      },
      "results": [
        {
          "source_directory_file_id": "dfl-aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
          "job_reference": {
            "id": "pjb-aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"
          }
        }
      ]
    }
  ]
}