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