SOAP API - deleteWorkingDayExceptions

The table summarizes the SOAP API - deleteWorkingDayExceptions.

Request Uses the deleteWorkingDayExceptions element (from the CalendarService schema)
Parameter notes
  • guid: the ID of the calendar from which the exception is being deleted. The only supported value is SYSTEM.
  • delete-exceptions: a list of IDs of the exceptions to be deleted. You can obtain these IDs from the response to the addWorkingDayExceptions operation that created the exception.
Response Returns a deleteWorkingDayExceptionsResponse element (from the CalendarService schema)
Example Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:cal="http://calendar.api.dac.n2.tibco.com">
   <soapenv:Header/>
   <soapenv:Body>
      <cal:deleteWorkingDayExceptions guid="SYSTEM">
         <!--1 or more repetitions:-->
<delete-exceptions>A25D05C7-E656-400C-A84F-F8DF41FE73DF</delete-exceptions>
      </cal:deleteWorkingDayExceptions>
   </soapenv:Body>
</soapenv:Envelope>
Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <deleteWorkingDayExceptionsResponse xmlns="http://calendar.api.dac.n2.tibco.com">OK</deleteWorkingDayExceptionsResponse>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>