Skip to main content

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

ParameterDescriptionTypeRequired/ Optional
workflowIdThe execution ID of the paused workflow to resume.stringRequired.

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.