Last active
February 11, 2020 18:04
-
-
Save davecra/5bd5bb85d2ddc0709247b2ca06d0628f to your computer and use it in GitHub Desktop.
Response from an ExpandDL operation on a PrivateDL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<!-- Note: EwsEditor has replaced the "utf-16" text in the first line with"utf-8" in order for the XML to render in the response web control. --> | |
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> | |
<s:Header> | |
<h:ServerVersionInfo MajorVersion="15" MinorVersion="20" MajorBuildNumber="2305" MinorBuildNumber="24" Version="V2018_01_08" xmlns:h="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" /> | |
</s:Header> | |
<s:Body> | |
<m:ExpandDLResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"> | |
<m:ResponseMessages> | |
<m:ExpandDLResponseMessage ResponseClass="Success"> | |
<m:ResponseCode>NoError</m:ResponseCode> | |
<m:DLExpansion TotalItemsInView="3" IncludesLastItemInRange="true"> | |
<t:Mailbox> | |
<t:Name>Bill S. Preston Esquire</t:Name> | |
<t:EmailAddress>[email protected]</t:EmailAddress> | |
<t:RoutingType>SMTP</t:RoutingType> | |
<t:MailboxType>Contact</t:MailboxType> | |
</t:Mailbox> | |
<t:Mailbox> | |
<t:Name>Theodore Logan</t:Name> | |
<t:EmailAddress>[email protected]</t:EmailAddress> | |
<t:RoutingType>SMTP</t:RoutingType> | |
<t:MailboxType>Contact</t:MailboxType> | |
</t:Mailbox> | |
<t:Mailbox> | |
<t:Name>Wyld Stallyns Fans</t:Name> | |
<t:EmailAddress>[email protected]</t:EmailAddress> | |
<t:RoutingType>SMTP</t:RoutingType> | |
<t:MailboxType>Contact</t:MailboxType> | |
</t:Mailbox> | |
</m:DLExpansion> | |
</m:ExpandDLResponseMessage> | |
</m:ResponseMessages> | |
</m:ExpandDLResponse> | |
</s:Body> | |
</s:Envelope> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment