4.1 GetServiceConfiguration Operation Request

The following example shows how to get mail tips for a user by using the GetServiceConfiguration operation, as described in section 3.1.4.1. The request is for the mail tips configuration for user1.

 <?xml version="1.0" encoding="utf-8" ?>
 <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/"
                xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
   <soap:Header>
     <t:RequestServerVersion Version="Exchange2010" />
   </soap:Header>
  
   <soap:Body>
     <GetServiceConfiguration 
         xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
       <ActingAs>
         <t:EmailAddress>user1@contoso.com</t:EmailAddress>
         <t:RoutingType>SMTP</t:RoutingType>
       </ActingAs>
       <RequestedConfiguration>
         <ConfigurationName>MailTips</ConfigurationName>
       </RequestedConfiguration>
     </GetServiceConfiguration>
   </soap:Body>
  
 </soap:Envelope>