Create a Sendable Data Extension

Use a sendable data extension in conjunction with publication and suppression lists to send email and SMS messages to your subscribers. SMS messages require the use of data extensions and publication and suppression lists.

Use these code examples to create your own API calls.

Sample .NET Code 

1using System;
2using System.Configuration;
3using System.Data;
4using System.Linq;
5using System.Web;
6using System.Web.Security;
7using System.Web.UI;
8using System.Web.UI.HtmlControls;
9using System.Web.UI.WebControls;
10using System.Web.UI.WebControls.WebParts;
11using System.Xml.Linq;
12using etAPI;
13public partial class DataExtensionSendableCreate : System.Web.UI.Page
14{
15    //Global Variables
16    private SoapClient client = new SoapClient();
17    protected void Page_Load(object sender, EventArgs e)
18    {
19        //Authenticate
20        client.ClientCredentials.UserName.UserName = System.Configuration.ConfigurationSettings.AppSettings["wsUserName"];
21        client.ClientCredentials.UserName.Password = System.Configuration.ConfigurationSettings.AppSettings["wsPassword"];
22        if (!IsPostBack)
23        {
24        }
25    }
26    protected void btnSubmit_Click(object sender, EventArgs e)
27    {
28        try
29        {
30            //Create a GUID to ensure a unique subscriber key
31            string strGUID = System.Guid.NewGuid().ToString();
32            //Create DataExtension object [Subscribers > Data Extensions > Data Extensions]
33            DataExtension de = new DataExtension();
34            de.CustomerKey = strGUID;
35            de.Name = strGUID;
36            //Is this data base table going to house Subscribers?
37            de.IsSendable = true;
38            de.IsSendableSpecified = true;
39            //The Name of the Column in the DE to map to ET
40            de.SendableDataExtensionField = new DataExtensionField();
41            de.SendableDataExtensionField.FieldType = DataExtensionFieldType.Text;
42            de.SendableDataExtensionField.Name = "subscriber_key";
43            //The Name of the Attribute to Send to
44            de.SendableSubscriberField = new etAPI.Attribute();
45            de.SendableSubscriberField.Name = "Subscriber Key";//If Subscriber Key is turned on this must be Subscriber Key
46            de.Fields = new DataExtensionField[3];
47            //1
48            //Set the column parameters
49            de.Fields[0] = new DataExtensionField();
50            de.Fields[0].Name = "subscriber_key";
51            de.Fields[0].FieldType =  DataExtensionFieldType.Text;
52            de.Fields[0].FieldTypeSpecified = true;
53            de.Fields[0].IsRequired = true;
54            de.Fields[0].IsRequiredSpecified = true;
55            de.Fields[0].IsPrimaryKey = true;
56            de.Fields[0].IsPrimaryKeySpecified = true;
57            de.Fields[0].MaxLength = 200;//If this is the Primary Key MaxLength is required.
58            de.Fields[0].MaxLengthSpecified = true;
59            //2
60            //Set the column parameters
61            de.Fields[1] = new DataExtensionField();
62            de.Fields[1].Name = "email_address";
63            de.Fields[1].FieldType = DataExtensionFieldType.EmailAddress;
64            de.Fields[1].FieldTypeSpecified = true;
65            de.Fields[1].IsRequired = true;
66            de.Fields[1].IsRequiredSpecified = true;
67            //3
68            //Set the column parameters
69            de.Fields[2] = new DataExtensionField();
70            de.Fields[2].Name = "full_name";
71            de.Fields[2].FieldType = DataExtensionFieldType.Text;
72            de.Fields[2].FieldTypeSpecified = true;
73            de.Fields[2].IsRequired = false;
74            de.Fields[2].IsRequiredSpecified = true;
75            try
76            {
77                string cRequestID = String.Empty;
78                string cStatus = String.Empty;
79                //Call the Create method on the Subscriber object
80                CreateResult[] cResults = client.Create(new CreateOptions(), new APIObject[] { de }, out cRequestID, out cStatus);
81                //Display Results
82                lblMessage.Text += "Overall Status: " + cStatus;
83                lblMessage.Text += "<br/>";
84                lblMessage.Text += "Number of Results: " + cResults.Length;
85                lblMessage.Text += "<br/>";
86                //Loop through each object returned and display the StatusMessage
87                foreach (CreateResult cr in cResults)
88                {
89                    lblMessage.Text += "Status Message: " + cr.StatusMessage;
90                    lblMessage.Text += "<br/>";
91                }
92            }
93            catch (Exception exCreate)
94            {
95                //Set Message
96                lblMessage.Text += "<br/><br/>CREATE ERROR:<br/>" + exCreate.Message;
97            }
98        }
99        catch (Exception exc)
100        {
101            //Set Message
102            lblMessage.Text += "<br/><br/>###ERROR<br/>" + exc.Message;
103        }
104    }
105}

Sample Java Code (Axis 1.4) 

This code sample requires that the Subscriber Key feature be enabled for your account. Contact your Account Executive for more information about enabling this feature.

1public void testCreateDataExtensionTest() throws RemoteException {
2    Soap stub = init();
3    DataExtension dataExtension = new DataExtension();
4    dataExtension.setName("UsingAPI_For_Test_1");
5    dataExtension.setCustomerKey("UsingAPI_For_Test_1");
6    //Field 1::
7    DataExtensionField field1 = new DataExtensionField();
8    field1.setName("EmailAddress");
9    field1.setCustomerKey("EmailAddress_Key");
10    field1.setFieldType(DataExtensionFieldType.EmailAddress);
11    //Field 2::
12    DataExtensionField field2 = new DataExtensionField();
13    field2.setName("ChannelUser");
14    field2.setCustomerKey("ChannelUser_Key");
15    field2.setFieldType(DataExtensionFieldType.Text);
16    DataExtensionField field3 = new DataExtensionField();
17    field3.setName("ChannelUser_EmailAddress");
18    field3.setCustomerKey("ChannelUser_EmailAddress_Key");
19    field3.setFieldType(DataExtensionFieldType.Text);
20    DataExtensionField field4 = new DataExtensionField();
21    field4.setName("Demographic_Address");
22    field4.setCustomerKey("Demographic_Address_Key");
23    field4.setFieldType(DataExtensionFieldType.Text);
24    Attribute a = new Attribute();
25    a.setName("Subscriber Key");
26    a.setValue("");
27    dataExtension.setSendableDataExtensionField(field1);
28    dataExtension.setSendableSubscriberField(a);
29    dataExtension.setIsSendable(true);
30    dataExtension.setFields(new DataExtensionField[]{field1, field2, field3, field4});
31    //dataExtension.setTemplate(dataExtensionTemplate);
32    CreateRequest createRequest = new CreateRequest();
33    createRequest.setObjects(new APIObject[]{dataExtension});
34    createRequest.setOptions(new CreateOptions());
35    CreateResponse createResponse = stub.create(createRequest);
36    System.out.println("CreateResponse ::: " + createResponse.getOverallStatus());
37    }
38}

Sample SOAP Envelope 

1<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
2   <soap:Header>
3      <wsa:Action>Create</wsa:Action>
4      <wsa:MessageID>urn:uuid:168bbf3d-394e-4656-ae57-2e96b4b568ae</wsa:MessageID>
5      <wsa:ReplyTo>
6         <wsa:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:Address>
7      </wsa:ReplyTo>
8      <wsa:To>https://YOUR_SUBDOMAIN.soap.marketingcloudapis.com/Service.asmx</wsa:To>
9      <wsse:Security soap:mustUnderstand="1">
10         <wsse:UsernameToken wsu:Id="SecurityToken-d19fb7b0-ec6d-49a8-8fd3-796819ec7306">
11            <wsse:Username>XXXXX</wsse:Username>
12            <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">XXXXX</wsse:Password>
13         </wsse:UsernameToken>
14      </wsse:Security>
15   </soap:Header>
16   <soap:Body>
17      <CreateRequest xmlns="http://exacttarget.com/wsdl/partnerAPI">
18         <Options>
19            <SaveOptions/>
20         </Options>
21         <Objects xsi:type="DataExtension">
22            <PartnerKey xsi:nil="true"/>
23            <ObjectID xsi:nil="true"/>
24            <CustomerKey>02_2010-02-26-08_42_30_762_851628611</CustomerKey>
25            <Name>02_2010-02-26-08_42_30_762_851628611</Name>
26            <Description>02_2010-02-26-08_42_30_762_851628611</Description>
27            <IsSendable>true</IsSendable>
28            <IsTestable>false</IsTestable>
29            <DataRetentionPeriodLength>48</DataRetentionPeriodLength>
30            <DataRetentionPeriodUnitOfMeasure>0</DataRetentionPeriodUnitOfMeasure>
31            <RowBasedRetention>false</RowBasedRetention>
32            <ResetRetentionPeriodOnImport>true</ResetRetentionPeriodOnImport>
33            <DeleteAtEndOfRetentionPeriod>false</DeleteAtEndOfRetentionPeriod>
34            <Fields>
35               <Field>
36                  <PartnerKey xsi:nil="true"/>
37                  <ObjectID xsi:nil="true"/>
38                  <Name>D_Body</Name>
39                  <Description>D_Body</Description>
40                  <IsRequired>true</IsRequired>
41                  <IsPrimaryKey>false</IsPrimaryKey>
42                  <FieldType>Text</FieldType>
43                  <DefaultValue></DefaultValue>
44               </Field>
45               <Field>
46                  <PartnerKey xsi:nil="true"/>
47                  <ObjectID xsi:nil="true"/>
48                  <Name>D_F1</Name>
49                  <Description>D_F1</Description>
50                  <MaxLength>100</MaxLength>
51                  <IsRequired>true</IsRequired>
52                  <IsPrimaryKey>false</IsPrimaryKey>
53                  <FieldType>Text</FieldType>
54                  <DefaultValue></DefaultValue>
55               </Field>
56               <Field>
57                  <PartnerKey xsi:nil="true"/>
58                  <ObjectID xsi:nil="true"/>
59                  <Name>D_F2</Name>
60                  <Description>D_F2</Description>
61                  <MaxLength>100</MaxLength>
62                  <IsRequired>true</IsRequired>
63                  <IsPrimaryKey>false</IsPrimaryKey>
64                  <FieldType>Text</FieldType>
65                  <DefaultValue></DefaultValue>
66               </Field>
67               <Field>
68                  <PartnerKey xsi:nil="true"/>
69                  <ObjectID xsi:nil="true"/>
70                  <Name>D_F3</Name>
71                  <Description>D_F3</Description>
72                  <MaxLength>100</MaxLength>
73                  <IsRequired>true</IsRequired>
74                  <IsPrimaryKey>false</IsPrimaryKey>
75                  <FieldType>Text</FieldType>
76                  <DefaultValue></DefaultValue>
77               </Field>
78               <Field>
79                  <PartnerKey xsi:nil="true"/>
80                  <ObjectID xsi:nil="true"/>
81                  <Name>D_F4</Name>
82                  <Description>D_F4</Description>
83                  <MaxLength>100</MaxLength>
84                  <IsRequired>true</IsRequired>
85                  <IsPrimaryKey>false</IsPrimaryKey>
86                  <FieldType>Text</FieldType>
87                  <DefaultValue></DefaultValue>
88               </Field>
89               <Field>
90                  <PartnerKey xsi:nil="true"/>
91                  <ObjectID xsi:nil="true"/>
92                  <Name>D_F5</Name>
93                  <Description>D_F5</Description>
94                  <MaxLength>100</MaxLength>
95                  <IsRequired>true</IsRequired>
96                  <IsPrimaryKey>false</IsPrimaryKey>
97                  <FieldType>Text</FieldType>
98                  <DefaultValue></DefaultValue>
99               </Field>
100               <Field>
101                  <PartnerKey xsi:nil="true"/>
102                  <ObjectID xsi:nil="true"/>
103                  <Name>D_From Email</Name>
104                  <Description>D_From Email</Description>
105                  <MaxLength>320</MaxLength>
106                  <IsRequired>true</IsRequired>
107                  <IsPrimaryKey>false</IsPrimaryKey>
108                  <FieldType>Text</FieldType>
109                  <DefaultValue></DefaultValue>
110               </Field>
111               <Field>
112                  <PartnerKey xsi:nil="true"/>
113                  <ObjectID xsi:nil="true"/>
114                  <Name>D_From Name</Name>
115                  <Description>D_From Name</Description>
116                  <MaxLength>1024</MaxLength>
117                  <IsRequired>true</IsRequired>
118                  <IsPrimaryKey>false</IsPrimaryKey>
119                  <FieldType>Text</FieldType>
120                  <DefaultValue></DefaultValue>
121               </Field>
122               <Field>
123                  <PartnerKey xsi:nil="true"/>
124                  <ObjectID xsi:nil="true"/>
125                  <Name>D_Subject</Name>
126                  <Description>D_Subject</Description>
127                  <MaxLength>1024</MaxLength>
128                  <IsRequired>true</IsRequired>
129                  <IsPrimaryKey>false</IsPrimaryKey>
130                  <FieldType>Text</FieldType>
131                  <DefaultValue></DefaultValue>
132               </Field>
133               <Field>
134                  <PartnerKey xsi:nil="true"/>
135                  <ObjectID xsi:nil="true"/>
136                  <Name>Email Address</Name>
137                  <Description>Email Address</Description>
138                  <MaxLength>100</MaxLength>
139                  <IsRequired>true</IsRequired>
140                  <IsPrimaryKey>false</IsPrimaryKey>
141                  <FieldType>EmailAddress</FieldType>
142               </Field>
143               <Field>
144                  <PartnerKey xsi:nil="true"/>
145                  <ObjectID xsi:nil="true"/>
146                  <Name>Subscriber Key</Name>
147                  <Description>Subscriber Key</Description>
148                  <MaxLength>100</MaxLength>
149                  <IsRequired>true</IsRequired>
150                  <IsPrimaryKey>false</IsPrimaryKey>
151                  <FieldType>Text</FieldType>
152                  <DefaultValue></DefaultValue>
153               </Field>
154               <Field>
155                  <PartnerKey xsi:nil="true"/>
156                  <ObjectID xsi:nil="true"/>
157                  <Name>D_FileAttachmentFileName1</Name>
158                  <Description>D_FileAttachmentFileName1</Description>
159                  <MaxLength>1024</MaxLength>
160                  <IsRequired>true</IsRequired>
161                  <IsPrimaryKey>false</IsPrimaryKey>
162                  <FieldType>Text</FieldType>
163                  <DefaultValue></DefaultValue>
164               </Field>
165               <Field>
166                  <PartnerKey xsi:nil="true"/>
167                  <ObjectID xsi:nil="true"/>
168                  <Name>D_FileAttachmentPhysicalFile1</Name>
169                  <Description>D_FileAttachmentPhysicalFile1</Description>
170                  <MaxLength>1024</MaxLength>
171                  <IsRequired>true</IsRequired>
172                  <IsPrimaryKey>false</IsPrimaryKey>
173                  <FieldType>Text</FieldType>
174                  <DefaultValue></DefaultValue>
175               </Field>
176               <Field>
177                  <PartnerKey xsi:nil="true"/>
178                  <ObjectID xsi:nil="true"/>
179                  <Name>D_FileAttachmentFileName2</Name>
180                  <Description>D_FileAttachmentFileName2</Description>
181                  <MaxLength>1024</MaxLength>
182                  <IsRequired>true</IsRequired>
183                  <IsPrimaryKey>false</IsPrimaryKey>
184                  <FieldType>Text</FieldType>
185                  <DefaultValue></DefaultValue>
186               </Field>
187               <Field>
188                  <PartnerKey xsi:nil="true"/>
189                  <ObjectID xsi:nil="true"/>
190                  <Name>D_FileAttachmentPhysicalFile2</Name>
191                  <Description>D_FileAttachmentPhysicalFile2</Description>
192                  <MaxLength>1024</MaxLength>
193                  <IsRequired>true</IsRequired>
194                  <IsPrimaryKey>false</IsPrimaryKey>
195                  <FieldType>Text</FieldType>
196                  <DefaultValue></DefaultValue>
197               </Field>
198               <Field>
199                  <PartnerKey xsi:nil="true"/>
200                  <ObjectID xsi:nil="true"/>
201                  <Name>D_FileAttachmentFileName3</Name>
202                  <Description>D_FileAttachmentFileName3</Description>
203                  <MaxLength>1024</MaxLength>
204                  <IsRequired>true</IsRequired>
205                  <IsPrimaryKey>false</IsPrimaryKey>
206                  <FieldType>Text</FieldType>
207                  <DefaultValue></DefaultValue>
208               </Field>
209               <Field>
210                  <PartnerKey xsi:nil="true"/>
211                  <ObjectID xsi:nil="true"/>
212                  <Name>D_FileAttachmentPhysicalFile3</Name>
213                  <Description>D_FileAttachmentPhysicalFile3</Description>
214                  <MaxLength>1024</MaxLength>
215                  <IsRequired>true</IsRequired>
216                  <IsPrimaryKey>false</IsPrimaryKey>
217                  <FieldType>Text</FieldType>
218                  <DefaultValue></DefaultValue>
219               </Field>
220               <Field>
221                  <PartnerKey xsi:nil="true"/>
222                  <ObjectID xsi:nil="true"/>
223                  <Name>D_FileAttachmentFileName4</Name>
224                  <Description>D_FileAttachmentFileName4</Description>
225                  <MaxLength>1024</MaxLength>
226                  <IsRequired>true</IsRequired>
227                  <IsPrimaryKey>false</IsPrimaryKey>
228                  <FieldType>Text</FieldType>
229                  <DefaultValue></DefaultValue>
230               </Field>
231               <Field>
232                  <PartnerKey xsi:nil="true"/>
233                  <ObjectID xsi:nil="true"/>
234                  <Name>D_FileAttachmentPhysicalFile4</Name>
235                  <Description>D_FileAttachmentPhysicalFile4</Description>
236                  <MaxLength>1024</MaxLength>
237                  <IsRequired>true</IsRequired>
238                  <IsPrimaryKey>false</IsPrimaryKey>
239                  <FieldType>Text</FieldType>
240                  <DefaultValue></DefaultValue>
241               </Field>
242               <Field>
243                  <PartnerKey xsi:nil="true"/>
244                  <ObjectID xsi:nil="true"/>
245                  <Name>D_FileAttachmentFileName5</Name>
246                  <Description>D_FileAttachmentFileName5</Description>
247                  <MaxLength>1024</MaxLength>
248                  <IsRequired>true</IsRequired>
249                  <IsPrimaryKey>false</IsPrimaryKey>
250                  <FieldType>Text</FieldType>
251                  <DefaultValue></DefaultValue>
252               </Field>
253               <Field>
254                  <PartnerKey xsi:nil="true"/>
255                  <ObjectID xsi:nil="true"/>
256                  <Name>D_FileAttachmentPhysicalFile5</Name>
257                  <Description>D_FileAttachmentPhysicalFile5</Description>
258                  <MaxLength>1024</MaxLength>
259                  <IsRequired>true</IsRequired>
260                  <IsPrimaryKey>false</IsPrimaryKey>
261                  <FieldType>Text</FieldType>
262                  <DefaultValue></DefaultValue>
263               </Field>
264               <Field>
265                  <PartnerKey xsi:nil="true"/>
266                  <ObjectID xsi:nil="true"/>
267                  <Name>D_URLAttachmentURL1</Name>
268                  <Description>D_URLAttachmentURL1</Description>
269                  <MaxLength>1024</MaxLength>
270                  <IsRequired>true</IsRequired>
271                  <IsPrimaryKey>false</IsPrimaryKey>
272                  <FieldType>Text</FieldType>
273                  <DefaultValue></DefaultValue>
274               </Field>
275               <Field>
276                  <PartnerKey xsi:nil="true"/>
277                  <ObjectID xsi:nil="true"/>
278                  <Name>D_URLAttachmentFileName1</Name>
279                  <Description>D_URLAttachmentFileName1</Description>
280                  <MaxLength>1024</MaxLength>
281                  <IsRequired>true</IsRequired>
282                  <IsPrimaryKey>false</IsPrimaryKey>
283                  <FieldType>Text</FieldType>
284                  <DefaultValue></DefaultValue>
285               </Field>
286               <Field>
287                  <PartnerKey xsi:nil="true"/>
288                  <ObjectID xsi:nil="true"/>
289                  <Name>D_URLAttachmentURL2</Name>
290                  <Description>D_URLAttachmentURL2</Description>
291                  <MaxLength>1024</MaxLength>
292                  <IsRequired>true</IsRequired>
293                  <IsPrimaryKey>false</IsPrimaryKey>
294                  <FieldType>Text</FieldType>
295                  <DefaultValue></DefaultValue>
296               </Field>
297               <Field>
298                  <PartnerKey xsi:nil="true"/>
299                  <ObjectID xsi:nil="true"/>
300                  <Name>D_URLAttachmentFileName2</Name>
301                  <Description>D_URLAttachmentFileName2</Description>
302                  <MaxLength>1024</MaxLength>
303                  <IsRequired>true</IsRequired>
304                  <IsPrimaryKey>false</IsPrimaryKey>
305                  <FieldType>Text</FieldType>
306                  <DefaultValue></DefaultValue>
307               </Field>
308               <Field>
309                  <PartnerKey xsi:nil="true"/>
310                  <ObjectID xsi:nil="true"/>
311                  <Name>D_URLAttachmentURL3</Name>
312                  <Description>D_URLAttachmentURL3</Description>
313                  <MaxLength>1024</MaxLength>
314                  <IsRequired>true</IsRequired>
315                  <IsPrimaryKey>false</IsPrimaryKey>
316                  <FieldType>Text</FieldType>
317                  <DefaultValue></DefaultValue>
318               </Field>
319               <Field>
320                  <PartnerKey xsi:nil="true"/>
321                  <ObjectID xsi:nil="true"/>
322                  <Name>D_URLAttachmentFileName3</Name>
323                  <Description>D_URLAttachmentFileName3</Description>
324                  <MaxLength>1024</MaxLength>
325                  <IsRequired>true</IsRequired>
326                  <IsPrimaryKey>false</IsPrimaryKey>
327                  <FieldType>Text</FieldType>
328                  <DefaultValue></DefaultValue>
329               </Field>
330               <Field>
331                  <PartnerKey xsi:nil="true"/>
332                  <ObjectID xsi:nil="true"/>
333                  <Name>D_URLAttachmentURL4</Name>
334                  <Description>D_URLAttachmentURL4</Description>
335                  <MaxLength>1024</MaxLength>
336                  <IsRequired>true</IsRequired>
337                  <IsPrimaryKey>false</IsPrimaryKey>
338                  <FieldType>Text</FieldType>
339                  <DefaultValue></DefaultValue>
340               </Field>
341               <Field>
342                  <PartnerKey xsi:nil="true"/>
343                  <ObjectID xsi:nil="true"/>
344                  <Name>D_URLAttachmentFileName4</Name>
345                  <Description>D_URLAttachmentFileName4</Description>
346                  <MaxLength>1024</MaxLength>
347                  <IsRequired>true</IsRequired>
348                  <IsPrimaryKey>false</IsPrimaryKey>
349                  <FieldType>Text</FieldType>
350                  <DefaultValue></DefaultValue>
351               </Field>
352               <Field>
353                  <PartnerKey xsi:nil="true"/>
354                  <ObjectID xsi:nil="true"/>
355                  <Name>D_URLAttachmentURL5</Name>
356                  <Description>D_URLAttachmentURL5</Description>
357                  <MaxLength>1024</MaxLength>
358                  <IsRequired>true</IsRequired>
359                  <IsPrimaryKey>false</IsPrimaryKey>
360                  <FieldType>Text</FieldType>
361                  <DefaultValue></DefaultValue>
362               </Field>
363               <Field>
364                  <PartnerKey xsi:nil="true"/>
365                  <ObjectID xsi:nil="true"/>
366                  <Name>D_URLAttachmentFileName5</Name>
367                  <Description>D_URLAttachmentFileName5</Description>
368                  <MaxLength>1024</MaxLength>
369                  <IsRequired>true</IsRequired>
370                  <IsPrimaryKey>false</IsPrimaryKey>
371                  <FieldType>Text</FieldType>
372                  <DefaultValue></DefaultValue>
373               </Field>
374            </Fields>
375            <SendableDataExtensionField>
376               <PartnerKey xsi:nil="true"/>
377               <ObjectID xsi:nil="true"/>
378               <Name>Email Address</Name>
379            </SendableDataExtensionField>
380            <SendableSubscriberField>
381               <Name>Email Address</Name>
382            </SendableSubscriberField>
383         </Objects>
384      </CreateRequest>
385   </soap:Body>
386</soap:Envelope>

See Also