Partially updates business-hours settings: timezone, weekly schedule (or null to clear), holidays, exceptional hours, and the allowUserBusinessHoursOverride toggle. Validates IANA timezones, HH:mm times, and YYYY-MM-DD dates. Admin can update own org; SuperAdmin can update any 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.
IANA timezone (e.g. America/New_York)
Weekly schedule keyed by lowercase day name; pass null to clear.
{
"monday": {
"enabled": true,
"start": "09:00",
"end": "17:00"
},
"tuesday": {
"enabled": true,
"start": "09:00",
"end": "17:00"
},
"wednesday": {
"enabled": true,
"start": "09:00",
"end": "17:00"
},
"thursday": {
"enabled": true,
"start": "09:00",
"end": "17:00"
},
"friday": {
"enabled": true,
"start": "09:00",
"end": "17:00"
},
"saturday": {
"enabled": false,
"start": "09:00",
"end": "17:00"
},
"sunday": {
"enabled": false,
"start": "09:00",
"end": "17:00"
}
}200200Business hours updated
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
}