Create orchestration
POST
/v1/orchestrationsHow 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
None.
Query parameters
None.
Body schema
Content type: application/json · Required
| Field | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | Human-readable name. |
| environmentId | string | Yes | Computer ID. |
| strategy | parallel | sequential | conditional | map_reduce | Yes | — |
| coordinatorAgentId | string | No | — |
| steps | object[] | Yes | — |
| 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 | — |
What the API returns
Each response code below includes the documented payload shape for the ACP API.
201Orchestration createdapplication/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. |