Skip to main content

Pause Workflow

This API pauses the execution of a running workflow. Any currently running tasks will finish, but no new tasks will be scheduled until the workflow is resumed.

note

This method is intended for pausing your workflow for debugging purposes. For handling your use cases in a live environment, refer to our documentation pausing workflows for external signals.

Input Payload

AttributeDescription
workflowIdThe unique identifier of the workflow to be paused.

API Endpoint

PUT /workflow/{workflowId}/pause

Client SDK Methods

BulkResponse pauseWorkflow(List<String> workflowIds) throws ApiException