Update orchestration
PATCH
/v1/orchestrations/{orchestrationId}How 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 |
|---|---|---|---|
| name | string | No | Human-readable name. |
| strategy | parallel | sequential | conditional | map_reduce | No | — |
| coordinatorAgentId | string | No | — |
| steps | object[] | No | — |
| steps[].agentId | string | No | Agent ID. |
| steps[].name | string | No | Human-readable name. |
| steps[].instructions | string | No | — |
| steps[].inputs | object | No | — |
| steps[].dependsOn | string[] | No | — |
| steps[].condition | string | No | — |
| status | draft | active | archived | No | Current lifecycle status. |
What the API returns
Each response code below includes the documented payload shape for the ACP API.
200Orchestration updatedapplication/json
| Field | Type | Required | Description |
|---|---|---|---|
| orchestration | object | No | — |
| orchestration.id | string | No | Unique identifier. |
| orchestration.userId | string | No | User ID. |
| orchestration.name | string | No | Human-readable name. |
| orchestration.environmentId | string | No | Computer ID. |
| orchestration.strategy | parallel | sequential | conditional | map_reduce | No | — |
| orchestration.coordinatorAgentId | string | No | — |
| orchestration.steps | object[] | No | — |
| orchestration.steps[].id | string | No | Unique identifier. |
| orchestration.steps[].agentId | string | No | Agent ID. |
| orchestration.steps[].name | string | No | Human-readable name. |
| orchestration.steps[].instructions | string | No | — |
| orchestration.steps[].inputs | object | No | — |
| orchestration.steps[].dependsOn | string[] | No | — |
| orchestration.steps[].condition | string | No | — |
| orchestration.status | draft | active | archived | No | Current lifecycle status. |
| orchestration.createdAt | string | No | ISO 8601 timestamp. |
| orchestration.updatedAt | string | No | ISO 8601 timestamp. |