POST
/
admin
/
workflows-executions
/
{workflow_id}
/
run
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
}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workflow_id
string
required

The workflow's ID.

Body

application/json

The details of the workflow to execute.

Response

200
application/json

OK

The execution's details.