Pause Durable Orchestration
POST
/api/v3/organizations/{organisation}/ai/orchestrations/{orchestrationId}/pause
const url = 'https://dashboard.quantcdn.io/api/v3/organizations/example/ai/orchestrations/example/pause';const options = {method: 'POST', 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 POST \ --url https://dashboard.quantcdn.io/api/v3/organizations/example/ai/orchestrations/example/pause \ --header 'Authorization: Bearer <token>'Pause a running orchestration. The current batch will complete, but no new batches will start. Can be resumed later.
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
Responses
Section titled “Responses”Orchestration paused
Media typeapplication/json
object
Examplegenerated
{}Orchestration not running
Access denied
Orchestration not found
Failed to pause orchestration
