Skip to main content
Resume a workflow run that was paused with clay workflows runs pause. Execution continues from where it stopped.
clay workflows runs resume <workflowId> <runId>

Arguments

ArgumentDescription
workflowIdWorkflow id, e.g. wf_abc123. Required.
runIdRun id, e.g. wfr_xyz789. Required.

Output

{
  "runId": "wfr_xyz789",
  "status": "running"
}
FieldTypeDescription
runIdstringThe resumed run.
status"running"Run is executing again.

Errors

CodeExitNotes
validation_error2Run is not paused (already running or finished).
not_found6No run with that id under that workflow.
auth_forbidden3The API key lacks the terracotta:cli scope.

Examples

clay workflows runs resume wf_abc123 wfr_xyz789
clay workflows runs resume wf_abc123 wfr_xyz789 | jq -r '.status'