Exam Marketing-Cloud-Developer Topic 4 Question 28 Discussion
Actual exam question for Salesforce's Marketing-Cloud-Developer exam
Question #: 28
Topic #: 4
Question #: 28
Topic #: 4
Certification Aid wants to add records to a Data Extension using the SOAP API. Which object can be used for this? Choose 1.
Suggested Answer: A Vote an answer
To add records to a Data Extension using the SOAP API, the DataExtensionObject object is utilized. This object represents a row within a data extension.
* DataExtensionObject: This object is specifically designed to interact with data extensions, allowing you to insert, update, and retrieve rows. Here is a basic example of how to use this object to add a record:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Body> <CreateRequest xmlns="
http://exacttarget.com/wsdl/partnerAPI"> <Objects xsi:type="DataExtensionObject">
<CustomerKey>DataExtensionExternalKey</CustomerKey> <Properties> <Property>
<Name>SubscriberKey</Name> <Value>[email protected]</Value> </Property> <Property>
<Name>FirstName</Name> <Value>John</Value> </Property> <Property> <Name>LastName</Name>
<Value>Doe</Value> </Property> </Properties> </Objects> </CreateRequest> </s:Body> </s:Envelope> Salesforce SOAP API Developer Guide
* DataExtensionObject: This object is specifically designed to interact with data extensions, allowing you to insert, update, and retrieve rows. Here is a basic example of how to use this object to add a record:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Body> <CreateRequest xmlns="
http://exacttarget.com/wsdl/partnerAPI"> <Objects xsi:type="DataExtensionObject">
<CustomerKey>DataExtensionExternalKey</CustomerKey> <Properties> <Property>
<Name>SubscriberKey</Name> <Value>[email protected]</Value> </Property> <Property>
<Name>FirstName</Name> <Value>John</Value> </Property> <Property> <Name>LastName</Name>
<Value>Doe</Value> </Property> </Properties> </Objects> </CreateRequest> </s:Body> </s:Envelope> Salesforce SOAP API Developer Guide
by Berg at Jul 10, 2026, 02:12 PM
0
0
0
10
Comments
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Report Comment
Commenting
You can sign-up / login (it's free).