Advertisement
Kvarz

GetUserAvailability ews

Feb 23rd, 2017
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.26 KB | None | 0 0
  1. http://schemas.microsoft.com/exchange/services/2006/messages/GetUserAvailability
  2.  
  3. <Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
  4.    <Body>
  5.       <GetUserAvailabilityRequest xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
  6.          <TimeZone xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
  7.             <Bias>300</Bias>
  8.             <StandardTime>
  9.                <Bias>0</Bias>
  10.                <Time>00:00:00</Time>
  11.                <DayOrder>1</DayOrder>
  12.                <Month>4</Month>
  13.                <DayOfWeek>Sunday</DayOfWeek>
  14.             </StandardTime>
  15.             <DaylightTime>
  16.                <Bias>0</Bias>
  17.                <Time>00:00:00</Time>
  18.                <DayOrder>5</DayOrder>
  19.                <Month>10</Month>
  20.                <DayOfWeek>Sunday</DayOfWeek>
  21.             </DaylightTime>
  22.          </TimeZone>
  23.          <MailboxDataArray>
  24.             <MailboxData xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
  25.                <Email>
  26.                   <Address>MeetingRoom4KHA5@dataart.com</Address>
  27.                </Email>
  28.                <AttendeeType>Required</AttendeeType>
  29.                <ExcludeConflicts>false</ExcludeConflicts>
  30.             </MailboxData>
  31.          </MailboxDataArray>
  32.          <FreeBusyViewOptions xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
  33.             <TimeWindow>
  34.                <StartTime>2017-02-02T17:30:00</StartTime>
  35.                <EndTime>2017-02-02T18:00:00</EndTime>
  36.             </TimeWindow>
  37.             <MergedFreeBusyIntervalInMinutes>30</MergedFreeBusyIntervalInMinutes>
  38.             <RequestedView>Detailed</RequestedView>
  39.          </FreeBusyViewOptions>
  40.       </GetUserAvailabilityRequest>
  41.    </Body>
  42. </Envelope>
  43.  
  44.  
  45.  
  46.  
  47.  
  48. <?xml version="1.0" encoding="utf-8"?>
  49. <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  50.     <s:Header>
  51.         <h:ServerVersionInfo MajorVersion="15" MinorVersion="0" MajorBuildNumber="1263" MinorBuildNumber="5" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
  52.     </s:Header>
  53.     <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  54.         <GetUserAvailabilityResponse xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
  55.             <FreeBusyResponseArray>
  56.                 <FreeBusyResponse>
  57.                     <ResponseMessage ResponseClass="Success">
  58.                         <ResponseCode>NoError</ResponseCode>
  59.                     </ResponseMessage>
  60.                     <FreeBusyView>
  61.                         <FreeBusyViewType xmlns="http://schemas.microsoft.com/exchange/services/2006/types">Detailed</FreeBusyViewType>
  62.                         <CalendarEventArray xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
  63.                             <CalendarEvent>
  64.                                 <StartTime>2017-02-02T17:30:00</StartTime>
  65.                                 <EndTime>2017-02-02T18:00:00</EndTime>
  66.                                 <BusyType>Busy</BusyType>
  67.                                 <CalendarEventDetails>
  68.                                     <ID>000000004E6D8624FBB27843B69A1479246DF5640700DF589550AF064D469FCE63D6E3AD48D90000007E3EF100007E32B168B2004742AAE40EDD0DFCF5820002C8C3D7070000</ID>
  69.                                     <Subject>Kirill Varivoda Meeting</Subject>
  70.                                     <Location>Meeting Room KHA 8.1</Location>
  71.                                     <IsMeeting>true</IsMeeting>
  72.                                     <IsRecurring>true</IsRecurring>
  73.                                     <IsException>false</IsException>
  74.                                     <IsReminderSet>false</IsReminderSet>
  75.                                     <IsPrivate>false</IsPrivate>
  76.                                 </CalendarEventDetails>
  77.                             </CalendarEvent>
  78.                         </CalendarEventArray>
  79.                     </FreeBusyView>
  80.                 </FreeBusyResponse>
  81.             </FreeBusyResponseArray>
  82.         </GetUserAvailabilityResponse>
  83.     </s:Body>
  84. </s:Envelope>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement