POST
/
admin
/
workflows-executions
/
{workflow_id}
/
steps
/
success
curl -X POST '{backend_url}/admin/workflows-executions/{workflow_id}/steps/success' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
--data-raw '{
  "transaction_id": "{value}",
  "step_id": "{value}"
}'
{
"success": 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 workflows execution's workflow id.

Body

application/json

The details of changing a workflow execution's step status.

Response

200
application/json

OK

The details of succeeding the workflow step.