cURL
curl -X POST '{backend_url}/admin/workflows-executions/{workflow_id}/run' \ -H 'Authorization: Bearer {access_token}'
200
Example
{ "acknowledgement": { "workflowId": "<string>", "transactionId": "<string>", "hasFinished": true, "hasFailed": true, "parentStepIdempotencyKey": "<string>" }}
Execute a workflow by its ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The workflow's ID.
The details of the workflow to execute.
The input to pass to the workflow. Can be of any type.
The ID of the workflow execution's transaction.
OK
The execution's details.
The workflow's details
Show child attributes