curl --request GET \
--url https://api.altostrat.io/chrono/schedules \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"name": "Business Hours Policy",
"timezone": "Australia/Sydney",
"active": true,
"updated_at": "2025-10-29T01:43:31Z",
"created_at": "2025-10-29T01:43:31Z",
"hours": [
{
"day": "monday",
"start": "09:00",
"end": "17:00"
}
],
"metadata": [
{
"key": "policy_id",
"value": "pol_12345"
}
]
}
]
}Retrieves a list of all schedule objects belonging to your workspace. The schedules are returned sorted by creation date, with the most recently created schedules appearing first.
curl --request GET \
--url https://api.altostrat.io/chrono/schedules \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"name": "Business Hours Policy",
"timezone": "Australia/Sydney",
"active": true,
"updated_at": "2025-10-29T01:43:31Z",
"created_at": "2025-10-29T01:43:31Z",
"hours": [
{
"day": "monday",
"start": "09:00",
"end": "17:00"
}
],
"metadata": [
{
"key": "policy_id",
"value": "pol_12345"
}
]
}
]
}Enter your API key in the format: Bearer {key}
A list of schedule objects.
Show child attributes
The unique identifier for the schedule.
"9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d"
A human-readable name for the schedule.
"Business Hours Policy"
The IANA timezone identifier that this schedule operates in. All start and end times are relative to this timezone.
"Australia/Sydney"
A read-only flag indicating whether the schedule is currently within an active time slot. This is calculated by the system.
true
The timestamp of when the schedule was last updated.
"2025-10-29T01:43:31Z"
The timestamp of when the schedule was created.
"2025-10-29T01:43:31Z"
A list of time slots that define the active periods for this schedule.
Show child attributes
The day of the week for this time slot.
sunday, monday, tuesday, wednesday, thursday, friday, saturday "monday"
The start time of the slot in HH:mm format (24-hour clock).
"09:00"
The end time of the slot in HH:mm format (24-hour clock).
"17:00"
Was this page helpful?