v13

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

Get Paused Execution

Get detailed information about a specific paused execution, including its pause points, execution snapshot, and resume queue. Use this to inspect the state before resuming.

get/api/workflows/{id}/paused/{executionId}

Path parameters

idstring 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.

Response

Paused execution details.

idstring

Unique identifier for the paused execution record.

workflowIdstring

The workflow this execution belongs to.

executionIdstring

The execution that was paused.

statusstring

Current status of the paused execution.

totalPauseCountinteger

Total number of pause points in this execution.

resumedCountinteger

Number of pause points that have been resumed.

pausedAtstring date-time nullable

When the execution was paused.

updatedAtstring date-time nullable

When the paused execution record was last updated.

expiresAtstring date-time nullable

When the paused execution will expire and be cleaned up.

metadataobject nullable

Additional metadata associated with the paused execution.

triggerIdsstring[]

IDs of triggers that initiated the original execution.

Example response

{
  "status": "paused"
}