Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve a list of which employees are assigned to which schedules.
cURL
curl --request GET \ --url https://api.example.com/api/public/v1/schedules/assignments
{ "data": [ { "id": "uas_123...", "userId": "usr_999...", "workScheduleId": "sch_123...", "startDate": "2026-01-01T00:00:00.000Z", "endDate": null, "user": { "id": "usr_999...", "firstName": "John", "lastName": "Smith" }, "workSchedule": { "id": "sch_123...", "name": "Standard Mon-Fri (9-5)", "type": "FIXED" } } ] }