GetUserAvailabilityRequest
Last modified: October 13, 2012
Applies to: Exchange Online | Exchange Server 2007 | Exchange Server 2010 | Exchange Server 2013 | Office 365
The GetUserAvailabilityRequest element contains the arguments used to obtain user availability information. This is a root element.
<GetUserAvailabilityRequest> <TimeZone>...</TimeZone> <MailboxDataArray>...</MailboxDataArray> <FreeBusyViewOptions>...</FreeBusyViewOptions> <SuggestionsViewOptions>...</SuggestionsViewOptions> </GetUserAvailabilityRequest>
GetUserAvailabilityRequestType
The following sections describe attributes, child elements, and parent elements.
Attributes
None.
Child elements
|
Element |
Description |
|---|---|
|
Contains elements that identify time zone information. This element also contains information about the transition between standard time and daylight saving time. |
|
|
Contains a list of mailboxes to query for availability information. |
|
|
Specifies the type of free/busy information returned in the response. |
|
|
Contains the options for obtaining meeting suggestion information. |
Parent elements
None.
The following example shows a request for free/busy information.
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetUserAvailabilityRequest xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<TimeZone xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
<Bias>480</Bias>
<StandardTime>
<Bias>0</Bias>
<Time>02:00:00</Time>
<DayOrder>5</DayOrder>
<Month>10</Month>
<DayOfWeek>Sunday</DayOfWeek>
</StandardTime>
<DaylightTime>
<Bias>-60</Bias>
<Time>02:00:00</Time>
<DayOrder>1</DayOrder>
<Month>4</Month>
<DayOfWeek>Sunday</DayOfWeek>
</DaylightTime>
</TimeZone>
<MailboxDataArray>
<MailboxData xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
<Email>
<Name></Name>
<Address>someone@exchangeserver.example.com</Address>
<RoutingType>SMTP</RoutingType>
</Email>
<AttendeeType>Organizer</AttendeeType>
<ExcludeConflicts>false</ExcludeConflicts>
<ExcludeNonWorkingHours>false</ExcludeNonWorkingHours>
</MailboxData>
</MailboxDataArray>
<FreeBusyViewOptions xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
<TimeWindow>
<StartTime>2006-02-06T00:00:00</StartTime>
<EndTime>2006-02-30T23:59:59</EndTime>
</TimeWindow>
<MergedFreeBusyIntervalInMinutes>60</MergedFreeBusyIntervalInMinutes>
<RequestedView>FreeBusyMerged</RequestedView>
</FreeBusyViewOptions>
</GetUserAvailabilityRequest>
</soap:Body>
</soap:Envelope>