Schedules API
Retrieve Schedule
Get a schedule by its ID.
GET
Authorizations
Use your Secret API key in the form 'Bearer <SECRET KEY>' (without the quotation marks)
Path Parameters
The ID of the schedule.
Response
200
application/json
Successful request
The unique ID of the schedule, prefixed with 'sched_'
Example:
"sched_1234"
The id of the scheduled task that will be triggered by this schedule
Example:
"my-scheduled-task"
Whether the schedule is active or not
Example:
true
The deduplication key used to prevent creating duplicate schedules
Example:
"dedup_key_1234"
The external ID of the schedule. Can be anything that is useful to you (e.g., user ID, org ID, etc.)
Example:
"user_1234"
The next time the schedule will run
Example:
"2024-04-01T00:00:00Z"
Was this page helpful?