Created
May 2, 2016 02:32
-
-
Save eliotharper/e5f218cd3e426ae4d88a2ad797066282 to your computer and use it in GitHub Desktop.
Retrieves all columns for a defined Data Extension in Salesforce Marketing Cloud
This file contains 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"?> | |
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<soapenv:Header> | |
<fueloauth xmlns="http://exacttarget.com">insertAccessTokenHere</fueloauth> | |
</soapenv:Header> | |
<soapenv:Body> | |
<RetrieveRequestMsg xmlns="http://exacttarget.com/wsdl/partnerAPI"> | |
<RetrieveRequest> | |
<ObjectType>DataExtensionField</ObjectType> | |
<Properties>Name</Properties> | |
<Filter xsi:type="SimpleFilterPart"> | |
<Property>DataExtension.CustomerKey</Property> | |
<SimpleOperator>equals</SimpleOperator> | |
<Value>insertDataExtensionExternalKeyHere</Value> | |
</Filter> | |
</RetrieveRequest> | |
</RetrieveRequestMsg> | |
</soapenv:Body> | |
</soapenv:Envelope> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment