Skip to content

List Orchestration Batches

GET
/api/v3/organizations/{organisation}/ai/orchestrations/{orchestrationId}/batches
curl --request GET \
--url 'https://dashboard.quantcdn.io/api/v3/organizations/example/ai/orchestrations/example/batches?limit=20' \
--header 'Authorization: Bearer <token>'

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

organisation
required
string

The organisation machine name

orchestrationId
required
string

Orchestration identifier

limit
integer
default: 20 >= 1 <= 100

Maximum number of batches to return

cursor
string

Pagination cursor from previous response

Batch history

Media typeapplication/json
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
Example
{
"batches": [
{
"status": "pending"
}
]
}

Access denied

Orchestration not found

Failed to list orchestration batches