GetUMProperties Operation (UMWS)
Last modified: March 16, 2009
Applies to: Exchange Server 2007 | Exchange Server 2010
The GetUMProperties operation gets all the Unified Messaging properties for the mailbox of the user who is making the request.
GetUMProperties Request Example
Description
The following example of a GetUMProperties request shows how to form a request to get the Unified Messaging properties of a mailbox.
Code
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetUMProperties xmlns="https://schemas.microsoft.com/exchange/services/2006/messages" />
</soap:Body>
</soap:Envelope>
Successful GetUMProperties Response Example
Description
The following example of a GetUMProperties response shows a response to the GetUMProperties request.
Code
<?xml version="1.0" encoding="utf-8" ?>
<soap:Envelope xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetUMPropertiesResponse xmlns="https://schemas.microsoft.com/exchange/services/2006/messages">
<GetUMPropertiesResponse>
<OofStatus>false</OofStatus>
<MissedCallNotificationEnabled>true</MissedCallNotificationEnabled>
<PlayOnPhoneDialString>12345</PlayOnPhoneDialString>
<TelephoneAccessNumbers>54321</TelephoneAccessNumbers>
<TelephoneAccessFolderEmail>AAAAAGsd2rbQLVtLobUGbrq/9IUBAEX2ikn/L8JJtI5WHI0FAW8AAAFXHhsAAA==</TelephoneAccessFolderEmail>
</GetUMPropertiesResponse>
</GetUMPropertiesResponse>
</soap:Body>
</soap:Envelope>