v13

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-015232292.9 KB
Human in the Loop

Resume Execution

Resume a paused workflow execution by providing input for a specific pause context. The execution continues from where it paused, using the provided input. Supports synchronous, asynchronous, and streaming modes (determined by the original execution's configuration).

post/api/resume/{workflowId}/{executionId}/{contextId}

Path parameters

workflowIdstring required
Example:3b1f7c92-8d4e-4a6b-9c0d-5e2f8a714b36

The unique identifier of the workflow.

executionIdstring required
Example:e4f8d2b6-9a1c-4e3d-8b7f-5c0a2d9e6f13

The execution ID of the paused execution.

contextIdstring required
Example:ctx_xyz789

The pause context ID to resume. Found in the pause point's contextId field or resumeLinks.

Request body

inputobject

Key-value pairs to pass as input to the resumed execution. If omitted, the entire request body is used as input.

Response

Resume execution completed synchronously, or resume was queued behind another in-progress resume.

OR
OR

Example response

{
  "status": "completed"
}