Skip to content

List Orchestration Batches

GET
/api/v3/organizations/{organisation}/ai/orchestrations/{orchestrationId}/batches

Get history of batches processed by this orchestration. Returns paginated batch records with status and item counts.

Authorizations

Parameters

Path Parameters

organisation
required
string

The organisation machine name

orchestrationId
required
string

Orchestration identifier

Query Parameters

limit
integer
default: 20 >= 1 <= 100

Maximum number of batches to return

cursor
string

Pagination cursor from previous response

Responses

200

Batch history

object
batches
Array<object>
object
batchId
string
orchestrationId
string
iteration
integer
itemCount
integer
completedCount
integer
failedCount
integer
status
string
Allowed values: pending running completed failed
startedAt
string format: date-time
completedAt
string format: date-time
error
string
nullable
nextCursor
string
nullable

403

Access denied

404

Orchestration not found

500

Failed to list orchestration batches