SOAP API - updateWorkingDayExceptions

The table summarizes the SOAP API - updateWorkingDayExceptions.

Request Uses the updateWorkingDayExceptions element (from the CalendarService schema)
Parameter notes
  • guid: the ID of the calendar for which the exception information is being updated. The only supported value is SYSTEM.
  • update-exceptions: one or more exceptions to be updated. In each case the guid of the exception is mandatory. You can obtain this from the response to the addWorkingDayExceptions operation that created the exception.

    Other information—description, all-day, start, end, and free-busy—is optional. You need specify only the information that is changing for each exception. See addWorkingDayExceptions for details of these parameters.

Response Returns an updateWorkingDayExceptionsResponse 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:updateWorkingDayExceptions guid="SYSTEM">
         <!--1 or more repetitions:-->
         <update-exceptions guid="A25D05C7-E656-400C-A84F-F8DF41FE73DF" all-day="false" start="2011-12-26T12:00:00" end="2011-12-26T18:00:00"/>
      </cal:updateWorkingDayExceptions>
   </soapenv:Body>
</soapenv:Envelope>
Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <updateWorkingDayExceptionsResponse xmlns="http://calendar.api.dac.n2.tibco.com">OK</updateWorkingDayExceptionsResponse>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>