Start orchestration run
POST
/v1/orchestrations/{orchestrationId}/runsHow to call this endpoint
Every ACP API request uses bearer authentication. The examples here show the actual request path, auth header, and body shape that the platform expects.
Path, query, and header parameters
These parameters control which ACP object the endpoint acts on and how the request is processed.
Path parameters
| Name | Location | Type | Required | Description |
|---|---|---|---|---|
| orchestrationId | path | string | Yes | Orchestration ID |
Query parameters
None.
Body schema
Content type: application/json · Optional
| Field | Type | Required | Description |
|---|---|---|---|
| inputs | object | No | — |
What the API returns
Each response code below includes the documented payload shape for the ACP API.
200Orchestration run startedapplication/json
| Field | Type | Required | Description |
|---|---|---|---|
| run | object | No | — |
| run.id | string | No | Unique identifier. |
| run.orchestrationId | string | No | — |
| run.threadId | string | No | Thread ID. |
| run.status | pending | running | completed | failed | No | Current lifecycle status. |
| run.stepResults | object[] | No | — |
| run.stepResults[].stepId | string | No | Step ID. |
| run.stepResults[].agentId | string | No | Agent ID. |
| run.stepResults[].status | pending | running | completed | failed | skipped | No | Current lifecycle status. |
| run.stepResults[].output | string | No | — |
| run.stepResults[].error | string | No | — |
| run.stepResults[].durationMs | integer | No | — |
| run.createdAt | string | No | ISO 8601 timestamp. |
| run.completedAt | string | No | ISO 8601 timestamp. |
402Insufficient budgetapplication/json
| Field | Type | Required | Description |
|---|---|---|---|
| error | string | No | — |
| message | string | No | Message text. |
| currentBudget | number | No | — |