Skip to content

List Durable Orchestrations

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

List durable orchestrations for an organization with optional filtering. * * Note: This is different from /tools/orchestrations which handles async tool execution * polling. These durable orchestrations are for long-running batch processing loops. * * Filter Options: * - status: Filter by orchestration status * - limit: Max results (default 20, max 100) * - cursor: Pagination cursor

organisation
required
string

The organisation machine name

status
string
Allowed values: pending running paused completed failed cancelled

Filter by orchestration status

limit
integer
default: 20 >= 1 <= 100

Maximum number of results

cursor
string

Pagination cursor from previous response

List of orchestrations

Media typeapplication/json
object
orchestrations
Array<object>
object
nextCursor
string
nullable
Examplegenerated
{
"orchestrations": [
{}
],
"nextCursor": "example"
}

Access denied

Failed to list orchestrations