Skip to content

Instantly share code, notes, and snippets.

@djuang1
Created December 8, 2014 20:55
Show Gist options
  • Save djuang1/9c37b8254f0a24772a59 to your computer and use it in GitHub Desktop.
Save djuang1/9c37b8254f0a24772a59 to your computer and use it in GitHub Desktop.
SOAP UI - MSCRM 4.0 Retrieve Account SOAP Request
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:cor="http://schemas.microsoft.com/crm/2007/CoreTypes" xmlns:web="http://schemas.microsoft.com/crm/2007/WebServices" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Header>
<web:CrmAuthenticationToken>
<cor:AuthenticationType>0</cor:AuthenticationType>
<cor:OrganizationName>IHSPOC</cor:OrganizationName>
<cor:CallerId>06452A7F-9472-E411-B5C5-22000B5D89F2</cor:CallerId>
</web:CrmAuthenticationToken>
</soap:Header>
<soap:Body>
<web:Retrieve>
<web:entityName>account</web:entityName>
<web:id>B0248E98-9772-E411-A8BD-22000B5D89F2</web:id>
<web:columnSet xmlns:q1="http://schemas.microsoft.com/crm/2006/Query" xsi:type="q1:ColumnSet">
<web:AllColumns>true</web:AllColumns>
<q1:Attributes>
<q1:Attribute>name</q1:Attribute>
<q1:Attribute>address1_line1</q1:Attribute>
</q1:Attributes>
</web:columnSet>
</web:Retrieve>
</soap:Body>
</soap:Envelope>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment