Get Durable Orchestration
GET
/api/v3/organizations/{organisation}/ai/orchestrations/{orchestrationId}
const url = 'https://dashboard.quantcdn.io/api/v3/organizations/example/ai/orchestrations/orch_1704067200_abc123xyz';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/orch_1704067200_abc123xyz \ --header 'Authorization: Bearer <token>'Get orchestration details including status and progress.
*
* Progress Tracking:
* - total: Total items to process
* - completed: Successfully processed
* - failed: Failed processing
* - pending: Awaiting processing
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”organisation
required
string
The organisation machine name
orchestrationId
required
string
Orchestration identifier
Example
orch_1704067200_abc123xyzResponses
Section titled “Responses”Orchestration details
Media typeapplication/json
object
Examplegenerated
{}Access denied
Orchestration not found
Failed to get orchestration
