latestOpenAPI 3.0.02026-08-137192110.1 KB

75294f591cc2

Orchestrations

Update Orchestration

Update an existing Orchestration.

post/orchestrations/{id}

Path parameters

idstring required
Example:ewK8sDoLNI4CFR

The ID of the Orchestration to update.

Request body

namestring

The name of the Orchestration.

cron_expressionstring

Cron expression defining when the Orchestration runs.

descriptionstring

The description of the Orchestration.

Example request

{
  "name": "My Orchestration",
  "cron_expression": "0 0 * * *",
  "description": "Daily sync of all marketing data."
}

Response

idstring required

The Id of the Orchestration.

namestring required

The name of the Orchestration.

cron_expressionstring required

The cron expression defining when the Orchestration runs.

descriptionstring nullable required

The description of the Orchestration.

activeboolean required

Whether the Orchestration is active.

Example response

{
  "id": "ewK8sDoLNI4CFR",
  "name": "My Orchestration",
  "cron_expression": "0 0 * * *",
  "description": "Daily sync of all marketing data.",
  "active": true
}