v6
latestSwagger 2.02026-08-0744314411.7 MBschedules
Schedules
List Schedules
List Schedules
get/schedules
Query parameters
cursorstring
Used for pagination. When a list request has more records available, cursors are provided in the response headers X-Files-Cursor-Next and X-Files-Cursor-Prev. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
per_pageinteger
Number of records to show per page. (Max: 10000, 1,000 or less is recommended).
If set, sort records by the specified field in either asc or desc direction. Valid fields are name.
Response
A list of Schedules objects.
Example response
[
{
"id": 1,
"name": "Weekday overnight",
"schedule_days_of_week": [
1,
2,
3,
4,
5
],
"schedule_times_of_day": [
"01:00"
],
"schedule_time_zone": "Eastern Time (US & Canada)",
"holiday_region": "us",
"human_readable_schedule": "Triggered every Monday, Tuesday, Wednesday, Thursday, Friday at 01:00 AM UTC TZ.",
"created_at": "2000-01-01T01:00:00Z",
"updated_at": "2000-01-01T01:00:00Z"
}
]