v1
latestOpenAPI 3.1.02026-07-26294215839.4 KBScheduling
Public API
Get Schedule
Retrieves a specific schedule by its UUID. Schedules organize shifts for employees.
OAuth Scopes: scheduling:schedules, time_tracking
get/api/v1/scheduling/schedules/{id}
Path parameters
idstring uuid required
The ID of the schedule
Response
Schedule retrieved successfully
Example response
{
"id": "0199de9b-6bcb-77e7-941d-3caf74b9a372",
"name": "Main Schedule",
"locationId": 123,
"timezone": "America/Denver",
"startOfWeek": "Monday",
"earlyClockInThreshold": 10,
"lateClockInThreshold": 10,
"earlyClockOutThreshold": 5,
"lateClockOutThreshold": 15,
"managerUserIds": [
1,
2
],
"employeeIds": [
10,
20
],
"createdAt": "2025-01-01T06:00:00Z",
"updatedAt": "2025-01-01T06:00:00Z",
"deletedAt": "2025-01-01T06:00:00Z"
}