Get organization business hours configuration
Organizations
Get organization business hours configuration
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.
GET
Get organization business hours configuration
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
Business hours returned
Available options:
true Example:
{
"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
}