curl -X POST '{backend_url}/admin/workflows-executions/{workflow_id}/run' \
-H 'Authorization: Bearer {jwt_token}'{
"acknowledgement": {
"workflowId": "<string>",
"transactionId": "<string>",
"hasFinished": true,
"hasFailed": true,
"parentStepIdempotencyKey": "<string>"
}
}Execute a workflow by its ID.
curl -X POST '{backend_url}/admin/workflows-executions/{workflow_id}/run' \
-H 'Authorization: Bearer {jwt_token}'{
"acknowledgement": {
"workflowId": "<string>",
"transactionId": "<string>",
"hasFinished": true,
"hasFailed": true,
"parentStepIdempotencyKey": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The workflow's ID.
OK
The execution's details.
The workflow's details
Show child attributes
The ID of the executed workflow.
The ID of the workflow exection's transaction. Use this later to track the workflow execution's progress or succeed / fail its steps.
Whether the workflow execution has finished.
Whether the workflow execution has failed.
The idempotency key of the workflow execution.