Start a new execution of a workflow asynchronously. The workflow will begin processing in the background.
You’ll receive a 202 Accepted response with a tracking_id immediately. Use this tracking_id to:
The execution will fail if:
Use cases:
Workflow identifier
Request to start a new workflow execution. Executions are processed asynchronously - you'll receive a tracking_id immediately and can poll for results using GET /workflow_executions/{id}.
Workflow execution queued successfully (processing in background)
Async workflow execution initiation response (HTTP 202)
Async response returned when workflow execution is successfully queued (HTTP 202 Accepted). The execution will begin processing in the background. Use the id to retrieve execution details or the tracking_id to monitor progress.