Skip to main content
GET
/
flows
/
schedules
/
{scheduled_run_uid}
Get scheduled flow_run by UUID
curl --request GET \
  --url https://api.edges.run/v1/flows/schedules/{scheduled_run_uid} \
  --header 'X-API-Key: <api-key>'
{
  "uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "flow_preset_uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "flow_preset_name": "<string>",
  "user_uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "workspace_uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "ACTIVE",
  "postponed_until": "2023-11-07T05:31:56Z",
  "cron": "<string>",
  "timezone": "<string>",
  "next_execution_at": "2023-11-07T05:31:56Z",
  "last_executed_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}
Retrieve detailed information about a specific scheduled flow run, including its configuration, status, and execution history.

Examples

curl --request GET \
  --url https://api.edges.run/v1/flows/schedules/550e8400-e29b-41d4-a716-446655440000 \
  --header 'X-API-Key: <your-api-key>'

Use Cases

  • Monitor Schedule Health: Check when a schedule last ran and when it will run next
  • Verify Configuration: Confirm the cron expression and timezone are correct
  • Check Status: Ensure the schedule is active and not paused or cancelled
  • Audit Trail: Track when schedules were created and last modified
If you need to pause, resume, or cancel this schedule, use the Manage Schedule endpoint.

Authorizations

X-API-Key
string
header
required

Path Parameters

scheduled_run_uid
string<uuid>
required

Scheduled flow_run UUID

Response

Returns the scheduled flow_run

Returns the scheduled flow_run

uid
string<uuid>

A unique identifier for the scheduled flow run.

flow_preset_uid
string<uuid>

A unique identifier for the flow preset associated with this scheduled execution.

flow_preset_name
string

The human-readable name of the flow preset executed by this schedule.

user_uid
string<uuid>

A unique identifier for the user associated with this scheduled flow run.

workspace_uid
string<uuid>

A unique identifier for the workspace associated with this scheduled flow run.

status
enum<string> | null

The current status of the scheduled flow run.

Available options:
ACTIVE,
CANCELLED,
PAUSED,
COMPLETED
postponed_until
string<date-time> | null

If the flow run is postponed, this field indicates when it will be retried.

cron
string | null

The cron expression (in POSIX format) defining the schedule for the flow run.

timezone
string | null

The IANA timezone for the scheduled flow run.

next_execution_at
string<date-time> | null

The date and time of the next scheduled execution.

last_executed_at
string<date-time> | null

The date and time when the flow run was last executed.

created_at
string<date-time> | null

The date and time when the scheduled flow run was created.

updated_at
string<date-time> | null

The date and time when the scheduled flow run was last updated.