/mcpChanging a Schedule To change an existing Schedule, an administrator makes a PUT to the schedules resource, specifying the ObjectId of the Schedule they wish to change in the URI and any data changes via XML: PUT /vmrest/schedules/df7faf3b-3278-4852-b488-7e3134dc3336 <Schedule> <DisplayName>No Daylight Shift</DisplayName> </Schedule> This would return the following on success: 204 No Content This would return the following if the specified schedule does not exist: 400 Bad Request <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ErrorDetails> <errors> <code>DATA_EXCEPTION</code> <message>Schedule not found </message> </errors> </ErrorDetails> Deleting a Schedule To delete an existing Schedule, an administrator makes a DELETE to the schedules resource, specifying the ObjectId of the Schedule they wish to delete in the URI: DELETE /vmrest/schedules/387f051e-3367-4cc8-abed-810293d39f76 This would return the following on success: 204 No Content This would return the following if the specified schedule does not exist: 404 Not Found <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ErrorDetails> <errors> <code>NOT_FOUND</code> <message>schedule - ObjectId=387f051e-3367-4cc8-abed-810293d39f76</message> </errors> </ErrorDetails> Note that if an administrator deletes a Schedule object, then all of the supporting ScheduleDetail objects for that Schedule will also be deleted. Cisco Unity Connection Provisioning Interface (CUPI) API 721 Cisco Unity Connection Provisioning Interface (CUPI) API for Schedules Changing a Schedule