List Durable Orchestrations
GET
/api/v3/organizations/{organisation}/ai/orchestrations
const url = 'https://dashboard.quantcdn.io/api/v3/organizations/example/ai/orchestrations?status=pending&limit=20';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”organisation
required
string
The organisation machine name
Query Parameters
Section titled “Query Parameters”status
string
Filter by orchestration status
limit
integer
Maximum number of results
cursor
string
Pagination cursor from previous response
Responses
Section titled “Responses”List of orchestrations
Media typeapplication/json
object
orchestrations
Array<object>
object
nextCursor
string
Examplegenerated
{ "orchestrations": [ {} ], "nextCursor": "example"}Access denied
Failed to list orchestrations
