Skip to main content
GET
Get the scheduled flow_runs
Retrieve a list of all scheduled flow runs in your workspace. You can filter by status, user, flow preset, and more.

Examples

This returns 50 schedules sorted by next execution time (soonest first).

Schedule Statuses

Use the uid from the list response to get detailed information about a specific schedule with Get Schedule or to manage it with Manage Schedule.

Authorizations

X-API-Key
string
header
required

Query Parameters

uid
string<uuid>[] | null

Scheduled flow_run UUID

Minimum array length: 1
status
enum<string>[] | null

Scheduled flow_run status

Minimum array length: 1
Available options:
ACTIVE,
CANCELLED,
PAUSED,
COMPLETED
user_uid
string<uuid>[] | null

User UUID

Minimum array length: 1
workspace_uid
string<uuid>[] | null

Workspace UUID

Minimum array length: 1
flow_preset_slug
string[] | null

Flow preset slug

Minimum array length: 1
next_execution_at
string<date-time>[] | null

Next execution at

Minimum array length: 1
last_executed_at
string<date-time>[] | null

Last executed at

Minimum array length: 1
created_at
string<date-time>[] | null

Created at

Minimum array length: 1
updated_at
string<date-time>[] | null

Updated at

Minimum array length: 1
limit
integer
default:10
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: x >= 0
sort
string[]

Sort by fields. Prefix with - for descending order. Default is ascending order.

Maximum array length: 10
Maximum string length: 128

Response

Returns the scheduled flow_runs

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.