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 be resumed.stringRequired.

Examples

Resume workflow execution

Request

curl -X 'PUT' \
'https://<YOUR_CLUSTER>/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.