Skip to main content
POST
/
flows
/
runs
/
{flow_run_uid}
/
resume
Resume a flow run
curl --request POST \
  --url https://api.edges.run/v1/flows/runs/{flow_run_uid}/resume \
  --header 'X-API-Key: <api-key>'
{
  "uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "user_uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "workspace_uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "last_error": {
    "label": "<string>",
    "message": "<string>"
  },
  "callback": {
    "url": "<string>"
  },
  "status": "CREATED",
  "output_count": 0,
  "scheduled_flow_run_uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "started_at": "<string>",
  "finished_at": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>"
}
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

Last error message

callback
object

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