Resume Workflow
Endpoint: PUT /api/workflow/{workflowId}/resume
Resumes a paused workflow execution. This method has no effect if the workflow is not paused.
Path parameters
| Parameter | Description | Type | Required/ Optional |
|---|---|---|---|
| workflowId | The execution ID of the paused workflow to resume. | string | Required. |
Response
Returns 200 OK, indicating that the workflow execution has resumed successfully.
Returns 400 if an invalid workflow execution ID is provided.
Examples
Resume workflow execution
Request
curl -X 'PUT' \
'https://<YOUR-SERVER-URL>/api/workflow/2ce9207f-d4a6-11ef-87b1-b2b27c52ebde/resume' \
-H 'accept: */*' \
-H 'X-Authorization: <TOKEN>'
Response
Returns 200 OK, indicating that the workflow execution has resumed successfully.