/mcpThe following is the response from the above GET request and the actual response will depend upon the information given by you: { "URI": "/vmrest/schedules/10c9ac6c-6a4c-4559-be75-2c409ef85054", "ObjectId": "10c9ac6c-6a4c-4559-be75-2c409ef85054", "DisplayName": "Tenant2_Holiday_1", "OwnerLocationObjectId": "97a1e9ab-6a69-4272-952a-b0e25c08aaaf", "OwnerLocationURI": "/vmrest/locations/connectionlocations/97a1e9ab-6a69-4272-952ab0e25c08aaaf", "IsHoliday": "true", "Undeletable": "false", "ScheduleDetailsURI": "/vmrest/schedules/10c9ac6c-6a4c-4559-be75-2c409ef85054/scheduledetails" } Response Code: 200 Creating a New Holiday Schedule The following is an example of POST request that can be used to create a new holiday schedule: POST https://<connection-server>/vmrest/schedules Request Body: <Schedule> <DisplayName>Texoma_Holiday</DisplayName> <OwnerLocationObjectId>5150cb31-a665-47d8-a311-9cc4524810d39</OwnerLocationObjectId> <IsHoliday>true</IsHoliday> </Schedule> The following is the response from the above POST request and the actual response will depend upon the information given by you: Response Code: 201 /vmrest/schedules/f62e3780-4bfc-4c8f-91a4-3ac4e35803c4 JSON Example To create a new holiday schedule, do the following: POST https://<connection-server>/vmrest/schedules Accept: application/json Content-Type: application/json Connection: keep-alive Request Body: { "DisplayName":"Texoma_Holiday ", "OwnerLocationObjectId":"5150cb31-a665-47d8-a311-9cc4524810d3", "IsHoliday":"true" } The following is the response from the above POST request and the actual response will depend upon the information given by you: Response Code: 201 /vmrest/schedules/f62e3780-4bfc-4c8f-91a4-3ac4e35803c4 Cisco Unity Connection Provisioning Interface (CUPI) API 731 Cisco Unity Connection Provisioning Interface (CUPI) API for Schedules Creating a New Holiday Schedule