Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
workflow_id | str | Yes | The workflow’s permanent ID (wpid_...). |
json_definition | WorkflowCreateYamlRequest | No | Updated definition as a JSON object. |
yaml_definition | str | No | Updated definition as a YAML string. |
request_options | RequestOptions | No | Per-request configuration (see below). |
Returns Workflow
Creates a new version of the workflow.
Request options
Override timeout, retries, or headers for this call by passingrequest_options (Python) or a second options argument (TypeScript).
| Option (Python) | Option (TypeScript) | Type | Description |
|---|---|---|---|
timeout_in_seconds | timeoutInSeconds | int / number | HTTP timeout in seconds. |
max_retries | maxRetries | int / number | Retry count. |
additional_headers | headers | dict / Record<string, string> | Extra headers. |
additional_query_parameters | - | dict | Extra query parameters. |
additional_body_parameters | - | dict | Extra body parameters. |
| - | abortSignal | AbortSignal | Signal to cancel the request. |
| - | apiKey | string | Override API key. |

