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

input
any

The input to pass to the workflow. Can be of any type.

transaction_id
string

The ID of the workflow execution's transaction.

Response

OK

The execution's details.

acknowledgement
object
required

The workflow's details