GET
/
admin
/
workflows-executions
/
{workflow_id}
/
{transaction_id}
/
{step_id}
/
subscribe
curl '{backend_url}/admin/workflows-executions/{workflow_id}/{transaction_id}/{step_id}/subscribe' \
-H 'Authorization: Bearer {access_token}'
"event: success\n data: {}"

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.

transaction_id
string
required

The workflows execution's transaction id.

step_id
string
required

The workflows execution's step id.

Response

200
text/event-stream

Stream of the step's status.

The step's status update and data changes.

Example:

"event: success\n data: {}"