Create, list, retrieve, update, pause, resume, and delete schedules.
/schedule
endpoint (e.g., /v4/actions/{action-name}/schedule
).inputs
: The inputs for your action (array).callback
: Object with a url
(required) to receive results.cron
: (optional) POSIX cron expression for recurring schedules.schedule_at
: (optional) ISO8601 date-time for a one-shot schedule.timezone
: (optional) IANA timezone string (e.g., “Europe/Paris”).0 9 * * 1-5
— Every weekday (Monday to Friday) at 9:00 AM30 2 * * *
— Every day at 2:30 AM0 0 1 * *
— On the first day of every month at midnight*/15 * * * *
— Every 15 minutesGET /v4/schedules
to retrieve all schedules.status
, action_name
, user_uid
, workspace_uid
, and more. Pagination is supported via limit
and offset
. Sorting is available using the sort
parameter (prefix with -
for descending order).GET /v4/schedules/{scheduled_run_uid}
with the schedule UID to fetch details.POST /v4/schedules/{scheduled_run_uid}/{action}
to update a schedule’s status.pause
, resume
, cancel
.