Skip to main content
POST
Resume a flow run
Resume a flow run that has been paused or is in a BLOCKED status. This is useful when a flow run requires manual intervention or when you want to restart processing after resolving an issue. Use Cases:
  • Resume a flow that was paused due to rate limiting
  • Restart a blocked flow after resolving dependency issues
  • Continue processing after manual review
Resumable Statuses: A flow run can only be resumed if it’s in one of these states:
  • BLOCKED - Flow is waiting for resources or dependencies
  • STOPPED - Flow was manually stopped
Resuming a flow run will return the updated flow run object with its new status. The flow will continue from where it left off.

Authorizations

X-API-Key
string
header
required

Path Parameters

flow_run_uid
string<uuid>
required

Flow run UUID

Response

Returns the flow run

Returns the flow run

uid
string<uuid>

Flow Run UUID

user_uid
string<uuid>

Member/User UUID

workspace_uid
string<uuid>

Workspace UUID

last_error
object | null

Last error message

callback
object | null

Callback

status
enum<string> | null

Flow Run status

Available options:
CREATED,
INVALID,
QUEUED,
SCHEDULED,
BLOCKED,
STOPPED,
RUNNING,
FAILED,
PARTIAL_SUCCEEDED,
SUCCEEDED
output_count
integer | null
default:0

Number of outputs generated by the flow run (only available when the flow run is finished)

scheduled_flow_run_uid
string<uuid> | null

If the flow run is scheduled, this field indicates the scheduled flow run UUID.

started_at
string | null

Started at

finished_at
string | null

Finished at

created_at
string

Created at

updated_at
string | null

Updated at