GetUserAvailabilityResponse
Last modified: October 13, 2012
Applies to: Exchange Online | Exchange Server 2007 | Exchange Server 2010 | Exchange Server 2013 | Office 365
The GetUserAvailabilityResponse element is the root element that contains the properties that define user availability information or suggested meeting time information.
<GetUserAvailabilityResponse> <FreeBusyResponseArray>...</FreeBusyResponseArray> <SuggestionsResponse>...</SuggestionsResponse> </GetUserAvailabilityResponse>
GetUserAvailabilityResponseType
The following sections describe attributes, child elements, and parent elements.
Attributes
None.
Child elements
|
Element |
Description |
|---|---|
|
Contains the requested users' availability information and the response status. |
|
|
Contains response status information and suggestion data for requested meeting suggestions. |
Parent elements
None.
The following example of a GetUserAvailability response shows a response to a GetUserAvailability request.
<?xml version="1.0" encoding="utf-8" ?>
<GetUserAvailabilityResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<FreeBusyResponseArray xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<FreeBusyResponse>
<ResponseMessage ResponseClass="Success">
<Path select="/m:GetUserAvailabilityRequest/MailboxDataArray[0]" />
</ResponseMessage>
<FreeBusyView>
<FreeBusyViewType xmlns="http://schemas.microsoft.com/exchange/services/2006/types">Detailed</FreeBusyViewType>
<CalendarEventArray xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
<CalendarEvent>
<StartTime>2006-02-28T19:00:00-08:00</StartTime>
<EndTime>2006-02-28T23:30:00-08:00</EndTime>
<BusyType>OOF</BusyType>
<IsPrivate>false</IsPrivate>
<CalendarEventDetails>
<ID>00000</ID>
<Subject>Exercise</Subject>
<Location>the gym</Location>
<IsMeeting>false</IsMeeting>
<IsRecurring>false</IsRecurring>
<IsException>false</IsException>
<IsReminderSet>true</IsReminderSet>
</CalendarEventDetails>
</CalendarEvent>
</CalendarEventArray>
<WorkingHours xmlns="http://schemas.microsoft.com/exchange/services/2006/types">
<TimeZone>
<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>
<WorkingPeriodArray>
<WorkingPeriod>
<DayOfWeek>Monday Tuesday Wednesday Thursday Friday</DayOfWeek>
<StartTimeInMinutes>480</StartTimeInMinutes>
<EndTimeInMinutes>1020</EndTimeInMinutes>
</WorkingPeriod>
</WorkingPeriodArray>
</WorkingHours>
</FreeBusyView>
</FreeBusyResponse>
</FreeBusyResponseArray>
</GetUserAvailabilityResponse>
The ID element contents were shortened to preserve readability.