Returns the organization-wide business-hours schedule: timezone, weekly schedule, holidays, exceptional hours, and whether users may override at the user level. Admin/SuperAdmin can read; non-superadmins can only read their own org.
Documentation Index
Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Business hours returned
true {
"timezone": "America/New_York",
"businessHours": {
"monday": {
"enabled": true,
"start": "09:00",
"end": "17:00"
},
"friday": {
"enabled": true,
"start": "09:00",
"end": "15:00"
}
},
"holidays": [
{
"date": "2026-12-25",
"label": "Christmas Day"
}
],
"exceptionalHours": [
{
"date": "2026-12-24",
"closed": false,
"start": "09:00",
"end": "13:00",
"label": "Christmas Eve"
}
],
"allowUserBusinessHoursOverride": false
}