Logo
Zoom Public API Documentation

Create business hours

POST {{baseUrl}}/contact_center/business_hours

Create new business hours.

Scopes: contact_center_operating_hours:write:admincontact_center_queue:write:admin

Rate Limit Label: Light

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Content-Type
string
Accept
string




RESPONSES

status Created

{ "business_hour_id": "<string>", "business_hour_name": "<string>", "business_hour_description": "<string>", "timezone": "<string>", "account_default": "<boolean>", "hours": { "hour_type": 1, "custom_hours": [ { "day_of_week": 1, "custom_hour_type": 0, "custom_hour_ranges": [ { "start_time": "<string>", "end_time": "<string>" }, { "start_time": "<string>", "end_time": "<string>" } ] }, { "day_of_week": 6, "custom_hour_type": 2, "custom_hour_ranges": [ { "start_time": "<string>", "end_time": "<string>" }, { "start_time": "<string>", "end_time": "<string>" } ] } ] } }



Curl
curl -X POST 'https://api.zoom.us/v2/contact_center/business_hours' -H 'Content-Type: application/json' -H 'Accept: application/json' -d '{"business_hour_name":"\u003cstring\u003e","business_hour_description":"\u003cstring\u003e","timezone":"\u003cstring\u003e","account_default":"\u003cboolean\u003e","hours":{"hour_type":1,"custom_hours":[{"day_of_week":2,"custom_hour_type":2,"custom_hour_ranges":[{"start_time":"\u003cstring\u003e","end_time":"\u003cstring\u003e"},{"start_time":"\u003cstring\u003e","end_time":"\u003cstring\u003e"}]},{"day_of_week":6,"custom_hour_type":2,"custom_hour_ranges":[{"start_time":"\u003cstring\u003e","end_time":"\u003cstring\u003e"},{"start_time":"\u003cstring\u003e","end_time":"\u003cstring\u003e"}]}]}}'

ENDPOINTS