Update organization business hours configuration
Organizations
Update organization business hours configuration
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.
PUT
Update organization business hours configuration
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/json
IANA timezone (e.g. America/New_York)
Weekly schedule keyed by lowercase day name; pass null to clear.
Example:
{
"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"
}
}Maximum array length:
200Maximum array length:
200Response
Business hours updated
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
}