mcdev 5.2.0 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +1 -1
- package/.fork/custom-commands.json +12 -0
- package/.github/ISSUE_TEMPLATE/bug.yml +2 -0
- package/.github/PULL_REQUEST_TEMPLATE/pr_template_release.md +19 -0
- package/.github/workflows/code-test.yml +1 -1
- package/.github/workflows/coverage-base-update.yml +1 -1
- package/.github/workflows/coverage-develop-branch.yml +2 -2
- package/.github/workflows/coverage-main-branch.yml +2 -2
- package/.github/workflows/coverage.yml +2 -2
- package/.github/workflows/npm-publish.yml +2 -2
- package/.prettierrc +7 -0
- package/docs/dist/documentation.md +388 -482
- package/jsconfig.json +5 -1
- package/lib/Builder.js +8 -8
- package/lib/Deployer.js +10 -10
- package/lib/MetadataTypeDefinitions.js +73 -38
- package/lib/MetadataTypeInfo.js +72 -37
- package/lib/Retriever.js +8 -8
- package/lib/cli.js +12 -7
- package/lib/index.js +28 -18
- package/lib/metadataTypes/Asset.js +12 -10
- package/lib/metadataTypes/AttributeGroup.js +7 -6
- package/lib/metadataTypes/AttributeSet.js +126 -18
- package/lib/metadataTypes/Automation.js +107 -78
- package/lib/metadataTypes/Campaign.js +7 -6
- package/lib/metadataTypes/ContentArea.js +7 -6
- package/lib/metadataTypes/DataExtension.js +475 -78
- package/lib/metadataTypes/DataExtensionField.js +36 -18
- package/lib/metadataTypes/DataExtensionTemplate.js +5 -4
- package/lib/metadataTypes/DataExtract.js +8 -7
- package/lib/metadataTypes/DataExtractType.js +5 -4
- package/lib/metadataTypes/Discovery.js +6 -5
- package/lib/metadataTypes/Email.js +6 -5
- package/lib/metadataTypes/EmailSend.js +7 -6
- package/lib/metadataTypes/Event.js +8 -7
- package/lib/metadataTypes/FileLocation.js +5 -4
- package/lib/metadataTypes/FileTransfer.js +8 -7
- package/lib/metadataTypes/Filter.js +5 -4
- package/lib/metadataTypes/Folder.js +9 -8
- package/lib/metadataTypes/ImportFile.js +8 -7
- package/lib/metadataTypes/Journey.js +17 -9
- package/lib/metadataTypes/List.js +9 -8
- package/lib/metadataTypes/MetadataType.js +100 -34
- package/lib/metadataTypes/MobileCode.js +5 -4
- package/lib/metadataTypes/MobileKeyword.js +9 -8
- package/lib/metadataTypes/MobileMessage.js +8 -7
- package/lib/metadataTypes/Query.js +9 -8
- package/lib/metadataTypes/Role.js +8 -7
- package/lib/metadataTypes/Script.js +7 -6
- package/lib/metadataTypes/SendClassification.js +5 -4
- package/lib/metadataTypes/TransactionalEmail.js +101 -23
- package/lib/metadataTypes/TransactionalMessage.js +9 -7
- package/lib/metadataTypes/TransactionalPush.js +7 -6
- package/lib/metadataTypes/TransactionalSMS.js +9 -8
- package/lib/metadataTypes/TriggeredSend.js +15 -12
- package/lib/metadataTypes/User.js +8 -7
- package/lib/metadataTypes/Verification.js +230 -0
- package/lib/metadataTypes/definitions/Asset.definition.js +1 -1
- package/lib/metadataTypes/definitions/AttributeGroup.definition.js +3 -3
- package/lib/metadataTypes/definitions/AttributeSet.definition.js +75 -22
- package/lib/metadataTypes/definitions/Automation.definition.js +2 -1
- package/lib/metadataTypes/definitions/Campaign.definition.js +1 -1
- package/lib/metadataTypes/definitions/ContentArea.definition.js +1 -1
- package/lib/metadataTypes/definitions/DataExtension.definition.js +1 -1
- package/lib/metadataTypes/definitions/DataExtensionField.definition.js +1 -1
- package/lib/metadataTypes/definitions/DataExtensionTemplate.definition.js +1 -1
- package/lib/metadataTypes/definitions/DataExtract.definition.js +1 -1
- package/lib/metadataTypes/definitions/DataExtractType.definition.js +1 -1
- package/lib/metadataTypes/definitions/Discovery.definition.js +1 -1
- package/lib/metadataTypes/definitions/Email.definition.js +1 -1
- package/lib/metadataTypes/definitions/EmailSend.definition.js +1 -1
- package/lib/metadataTypes/definitions/Event.definition.js +1 -1
- package/lib/metadataTypes/definitions/FileLocation.definition.js +1 -1
- package/lib/metadataTypes/definitions/FileTransfer.definition.js +1 -1
- package/lib/metadataTypes/definitions/Filter.definition.js +1 -1
- package/lib/metadataTypes/definitions/Folder.definition.js +1 -1
- package/lib/metadataTypes/definitions/ImportFile.definition.js +1 -1
- package/lib/metadataTypes/definitions/Journey.definition.js +1 -1
- package/lib/metadataTypes/definitions/List.definition.js +1 -1
- package/lib/metadataTypes/definitions/MobileCode.definition.js +1 -1
- package/lib/metadataTypes/definitions/MobileKeyword.definition.js +1 -1
- package/lib/metadataTypes/definitions/MobileMessage.definition.js +1 -1
- package/lib/metadataTypes/definitions/Query.definition.js +1 -1
- package/lib/metadataTypes/definitions/Role.definition.js +1 -1
- package/lib/metadataTypes/definitions/Script.definition.js +1 -1
- package/lib/metadataTypes/definitions/SendClassification.definition.js +1 -1
- package/lib/metadataTypes/definitions/TransactionalEmail.definition.js +20 -2
- package/lib/metadataTypes/definitions/TransactionalPush.definition.js +1 -1
- package/lib/metadataTypes/definitions/TransactionalSMS.definition.js +1 -1
- package/lib/metadataTypes/definitions/TriggeredSend.definition.js +1 -1
- package/lib/metadataTypes/definitions/User.definition.js +1 -1
- package/lib/metadataTypes/definitions/Verification.definition.js +88 -0
- package/lib/retrieveChangelog.js +4 -3
- package/lib/util/auth.js +11 -8
- package/lib/util/businessUnit.js +5 -5
- package/lib/util/cache.js +3 -3
- package/lib/util/cli.js +15 -13
- package/lib/util/config.js +10 -7
- package/lib/util/devops.js +12 -11
- package/lib/util/file.js +15 -14
- package/lib/util/init.config.js +11 -9
- package/lib/util/init.git.js +8 -7
- package/lib/util/init.js +12 -12
- package/lib/util/init.npm.js +7 -5
- package/lib/util/util.js +14 -12
- package/package.json +32 -27
- package/test/general.test.js +4 -6
- package/test/mockRoot/.mcdevrc.json +1 -1
- package/test/mockRoot/deploy/testInstance/_ParentBU_/dataExtension/testExisting_dataExtensionShared.dataExtension-meta.json +59 -0
- package/test/mockRoot/deploy/testInstance/_ParentBU_/dataExtension/testNew_dataExtensionShared.dataExtension-meta.json +23 -0
- package/test/mockRoot/deploy/testInstance/testBU/automation/testNew_automation.automation-meta.json +4 -0
- package/test/mockRoot/deploy/testInstance/testBU/dataExtension/testExisting_dataExtension.dataExtension-meta.json +1 -0
- package/test/mockRoot/deploy/testInstance/testBU/transactionalEmail/testExisting_temail.transactionalEmail-meta.json +3 -4
- package/test/mockRoot/deploy/testInstance/testBU/transactionalEmail/testNew_temail.transactionalEmail-meta.json +1 -6
- package/test/mockRoot/deploy/testInstance/testBU/verification/testExisting_39f6a488-20eb-4ba0-b0b9.verification-meta.json +11 -0
- package/test/mockRoot/deploy/testInstance/testBU/verification/testNew_39f6a488-20eb-4ba0-b0b9.verification-meta.json +11 -0
- package/test/resourceFactory.js +52 -26
- package/test/resources/1111111/data/v1/customobjectdata/key/testExisting_dataExtensionShared/rowset/get-response.json +13 -0
- package/test/resources/1111111/dataExtension/create-expected.json +23 -0
- package/test/resources/1111111/dataExtension/create-response.xml +59 -0
- package/test/resources/1111111/dataExtension/retrieve-expected.json +55 -0
- package/test/resources/1111111/dataExtension/retrieve-expected.md +18 -0
- package/test/resources/1111111/dataExtension/retrieve-response.xml +27 -1
- package/test/resources/1111111/dataExtension/update-expected.json +55 -0
- package/test/resources/1111111/dataExtension/update-response.xml +57 -0
- package/test/resources/1111111/dataExtensionField/retrieve-CustomerKey=[testExisting_dataExtensionShared].[TriggerUpdate_randomNumber_]-response.xml +45 -0
- package/test/resources/1111111/dataExtensionField/retrieve-DataExtension.CustomerKey=testExisting_dataExtensionShared-response.xml +98 -0
- package/test/resources/1111111/dataExtensionField/retrieve-DataExtension.CustomerKey=testNew_dataExtensionSharedORDataExtension.CustomerKey=testExisting_dataExtensionShared-response.xml +98 -0
- package/test/resources/1111111/dataExtensionField/retrieve-response.xml +98 -0
- package/test/resources/1111111/dataExtensionTemplate/retrieve-response.xml +303 -0
- package/test/resources/1111111/dataFolder/retrieve-ContentType=synchronizeddataextensionORContentType=shared_salesforcedataextensionORContentType=shared_dataextensionORContentType=shared_dataORContentType=salesforcedataextensionORContentType=dataextensionORContentType=hidden-response.xml +387 -0
- package/test/resources/1111111/dataFolder/retrieve-response.xml +353 -9
- package/test/resources/9999999/attributeSet/retrieve-expected.json +89 -694
- package/test/resources/9999999/automation/build-expected.json +4 -0
- package/test/resources/9999999/automation/create-expected.json +4 -0
- package/test/resources/9999999/automation/create-testNew_automation-expected.md +1 -0
- package/test/resources/9999999/automation/retrieve-expected.json +4 -0
- package/test/resources/9999999/automation/retrieve-testExisting_automation-expected.md +1 -0
- package/test/resources/9999999/automation/template-expected.json +4 -0
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-1f7f8788c560/get-response.json +7 -0
- package/test/resources/9999999/automation/v1/automations/post-response.json +7 -0
- package/test/resources/9999999/automation/v1/dataverifications/post-response.json +12 -0
- package/test/resources/9999999/automation/v1/dataverifications/testExisting_39f6a488-20eb-4ba0-b0b9/delete-response.json +0 -0
- package/test/resources/9999999/automation/v1/dataverifications/testExisting_39f6a488-20eb-4ba0-b0b9/get-response.json +12 -0
- package/test/resources/9999999/automation/v1/dataverifications/testExisting_39f6a488-20eb-4ba0-b0b9/patch-response.json +12 -0
- package/test/resources/9999999/dataExtension/build-expected.json +16 -0
- package/test/resources/9999999/dataExtension/delete-response.xml +42 -0
- package/test/resources/9999999/dataExtension/retrieve-expected.json +16 -0
- package/test/resources/9999999/dataExtension/retrieve-expected.md +3 -1
- package/test/resources/9999999/dataExtension/template-expected.json +16 -0
- package/test/resources/9999999/dataExtension/update-expected.json +17 -1
- package/test/resources/9999999/dataExtensionField/retrieve-CustomerKey=[testExisting_dataExtension].[LastName]-response.xml +44 -0
- package/test/resources/9999999/dataExtensionField/retrieve-DataExtension.CustomerKey=testExisting_dataExtension-response.xml +36 -1
- package/test/resources/9999999/dataExtensionField/retrieve-response.xml +36 -1
- package/test/resources/9999999/dataFolder/retrieve-ContentType=synchronizeddataextensionORContentType=shared_salesforcedataextensionORContentType=shared_dataextensionORContentType=shared_dataORContentType=salesforcedataextensionORContentType=dataextensionORContentType=hidden-response.xml +117 -0
- package/test/resources/9999999/hub/v1/contacts/schema/attributeGroups/get-response.json +43 -0
- package/test/resources/9999999/hub/v1/contacts/schema/setDefinitions/get-response.json +387 -0
- package/test/resources/9999999/interaction/v1/interactions/233d4413-922c-4568-85a5-e5cc77efc3be/delete-response.json +1 -0
- package/test/resources/9999999/legacy/v1/beta/bulk/automations/automation/definition/get-response.json +1 -1
- package/test/resources/9999999/messaging/v1/email/definitions/post-response.json +1 -1
- package/test/resources/9999999/messaging/v1/email/definitions/testExisting_temail/delete-response.json +6 -0
- package/test/resources/9999999/transactionalEmail/build-expected.json +3 -7
- package/test/resources/9999999/transactionalEmail/get-expected.json +3 -7
- package/test/resources/9999999/transactionalEmail/patch-expected.json +3 -7
- package/test/resources/9999999/transactionalEmail/post-expected.json +3 -7
- package/test/resources/9999999/transactionalEmail/template-expected.json +3 -7
- package/test/resources/9999999/verification/build-expected.json +11 -0
- package/test/resources/9999999/verification/get-expected.json +11 -0
- package/test/resources/9999999/verification/patch-expected.json +11 -0
- package/test/resources/9999999/verification/post-expected.json +11 -0
- package/test/resources/9999999/verification/template-expected.json +11 -0
- package/test/type.attributeGroup.test.js +9 -12
- package/test/type.attributeSet.test.js +10 -13
- package/test/type.automation.test.js +34 -32
- package/test/type.dataExtension.test.js +210 -54
- package/test/type.dataExtract.test.js +15 -9
- package/test/type.fileTransfer.test.js +15 -9
- package/test/type.importFile.test.js +15 -9
- package/test/type.journey.test.js +43 -17
- package/test/type.mobileKeyword.test.js +11 -11
- package/test/type.mobileMessage.test.js +11 -11
- package/test/type.query.test.js +13 -14
- package/test/type.script.test.js +11 -9
- package/test/type.transactionalEmail.test.js +17 -17
- package/test/type.transactionalPush.test.js +7 -10
- package/test/type.transactionalSMS.test.js +7 -11
- package/test/type.triggeredSend.test.js +11 -10
- package/test/type.user.test.js +6 -8
- package/test/type.verification.test.js +172 -0
- package/test/utils.js +68 -48
- package/types/mcdev.d.js +16 -2
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
5
|
+
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
|
|
6
|
+
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
|
|
7
|
+
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
|
8
|
+
<soap:Header>
|
|
9
|
+
<wsa:Action>CreateResponse</wsa:Action>
|
|
10
|
+
<wsa:MessageID>urn:uuid:3a5f1edf-dacb-4d19-a0d3-4e0dcc9f507d</wsa:MessageID>
|
|
11
|
+
<wsa:RelatesTo>urn:uuid:fb395987-bf45-42d6-af73-f51816c7b73f</wsa:RelatesTo>
|
|
12
|
+
<wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
|
|
13
|
+
<wsse:Security>
|
|
14
|
+
<wsu:Timestamp wsu:Id="Timestamp-b5d88471-97ad-4070-a18f-4c148a52da96">
|
|
15
|
+
<wsu:Created>2022-04-24T20:35:10Z</wsu:Created>
|
|
16
|
+
<wsu:Expires>2022-04-24T20:40:10Z</wsu:Expires>
|
|
17
|
+
</wsu:Timestamp>
|
|
18
|
+
</wsse:Security>
|
|
19
|
+
</soap:Header>
|
|
20
|
+
<soap:Body>
|
|
21
|
+
<CreateResponse xmlns="http://exacttarget.com/wsdl/partnerAPI">
|
|
22
|
+
<Results>
|
|
23
|
+
<StatusCode>OK</StatusCode>
|
|
24
|
+
<StatusMessage>Data Extension created.</StatusMessage>
|
|
25
|
+
<OrdinalID>0</OrdinalID>
|
|
26
|
+
<NewID>0</NewID>
|
|
27
|
+
<NewObjectID>shared-0ec4-ec11-b83c-48df37d1de8a</NewObjectID>
|
|
28
|
+
<Object xsi:type="DataExtension">
|
|
29
|
+
<PartnerKey xsi:nil="true" />
|
|
30
|
+
<ObjectID>shared-0ec4-ec11-b83c-48df37d1de8a</ObjectID>
|
|
31
|
+
<CustomerKey>testNew_dataExtensionShared</CustomerKey>
|
|
32
|
+
<Name>testNew_dataExtensionShared</Name>
|
|
33
|
+
<Description />
|
|
34
|
+
<IsSendable>false</IsSendable>
|
|
35
|
+
<IsTestable>false</IsTestable>
|
|
36
|
+
<RowBasedRetention>false</RowBasedRetention>
|
|
37
|
+
<ResetRetentionPeriodOnImport>false</ResetRetentionPeriodOnImport>
|
|
38
|
+
<DeleteAtEndOfRetentionPeriod>false</DeleteAtEndOfRetentionPeriod>
|
|
39
|
+
<RetainUntil />
|
|
40
|
+
<Fields>
|
|
41
|
+
<Field>
|
|
42
|
+
<PartnerKey xsi:nil="true" />
|
|
43
|
+
<ObjectID xsi:nil="true" />
|
|
44
|
+
<Name>testField</Name>
|
|
45
|
+
<DefaultValue />
|
|
46
|
+
<MaxLength>254</MaxLength>
|
|
47
|
+
<IsRequired>true</IsRequired>
|
|
48
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
49
|
+
<FieldType>Text</FieldType>
|
|
50
|
+
</Field>
|
|
51
|
+
</Fields>
|
|
52
|
+
<CategoryID>89356</CategoryID>
|
|
53
|
+
</Object>
|
|
54
|
+
</Results>
|
|
55
|
+
<RequestID>c41aa55a-90e3-4021-9f82-103796aae6da</RequestID>
|
|
56
|
+
<OverallStatus>OK</OverallStatus>
|
|
57
|
+
</CreateResponse>
|
|
58
|
+
</soap:Body>
|
|
59
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"CustomerKey": "testExisting_dataExtensionShared",
|
|
3
|
+
"DataRetentionPeriodLength": 6,
|
|
4
|
+
"DataRetentionPeriodUnitOfMeasure": 5,
|
|
5
|
+
"DeleteAtEndOfRetentionPeriod": false,
|
|
6
|
+
"Description": "bla bla",
|
|
7
|
+
"Fields": [
|
|
8
|
+
{
|
|
9
|
+
"DefaultValue": "",
|
|
10
|
+
"FieldType": "Text",
|
|
11
|
+
"IsPrimaryKey": false,
|
|
12
|
+
"IsRequired": false,
|
|
13
|
+
"MaxLength": 50,
|
|
14
|
+
"Name": "FirstName"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"DefaultValue": "",
|
|
18
|
+
"FieldType": "Text",
|
|
19
|
+
"IsPrimaryKey": false,
|
|
20
|
+
"IsRequired": false,
|
|
21
|
+
"MaxLength": 50,
|
|
22
|
+
"Name": "LastName"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"DefaultValue": "",
|
|
26
|
+
"FieldType": "EmailAddress",
|
|
27
|
+
"IsPrimaryKey": false,
|
|
28
|
+
"IsRequired": true,
|
|
29
|
+
"MaxLength": 254,
|
|
30
|
+
"Name": "EmailAddress"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"DefaultValue": "",
|
|
34
|
+
"FieldType": "Text",
|
|
35
|
+
"IsPrimaryKey": true,
|
|
36
|
+
"IsRequired": true,
|
|
37
|
+
"MaxLength": 50,
|
|
38
|
+
"Name": "ContactKey"
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"IsSendable": true,
|
|
42
|
+
"IsTestable": true,
|
|
43
|
+
"Name": "testExisting_dataExtensionShared",
|
|
44
|
+
"ResetRetentionPeriodOnImport": false,
|
|
45
|
+
"RetainUntil": "",
|
|
46
|
+
"RowBasedRetention": true,
|
|
47
|
+
"SendableDataExtensionField": {
|
|
48
|
+
"Name": "ContactKey"
|
|
49
|
+
},
|
|
50
|
+
"SendableSubscriberField": {
|
|
51
|
+
"Name": "Subscriber Key"
|
|
52
|
+
},
|
|
53
|
+
"r__folder_ContentType": "shared_dataextension",
|
|
54
|
+
"r__folder_Path": "Shared Items/Shared Data Extensions"
|
|
55
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
## testExisting_dataExtensionShared
|
|
2
|
+
|
|
3
|
+
**Description:** bla bla
|
|
4
|
+
|
|
5
|
+
**Folder:** Shared Items/Shared Data Extensions/
|
|
6
|
+
|
|
7
|
+
**Fields in table:** 4
|
|
8
|
+
|
|
9
|
+
**Sendable:** Yes (`ContactKey` to `Subscriber Key`)
|
|
10
|
+
|
|
11
|
+
**Testable:** Yes
|
|
12
|
+
|
|
13
|
+
| Name | FieldType | MaxLength | IsPrimaryKey | IsNullable | DefaultValue |
|
|
14
|
+
| --- | --- | --- | --- | --- | --- |
|
|
15
|
+
| FirstName | Text | 50 | - | + | |
|
|
16
|
+
| LastName | Text | 50 | - | + | |
|
|
17
|
+
| EmailAddress | EmailAddress | 254 | - | - | |
|
|
18
|
+
| ContactKey | Text | 50 | + | - | |
|
|
@@ -21,6 +21,32 @@
|
|
|
21
21
|
<RetrieveResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
|
|
22
22
|
<OverallStatus>OK</OverallStatus>
|
|
23
23
|
<RequestID>d175de6e-c8e4-4f5d-9c1d-ad64426ff4b7</RequestID>
|
|
24
|
+
<Results xsi:type="DataExtension">
|
|
25
|
+
<PartnerKey xsi:nil="true" />
|
|
26
|
+
<CreatedDate>2022-04-21T06:56:27.927</CreatedDate>
|
|
27
|
+
<ModifiedDate>2022-04-21T06:56:27.927</ModifiedDate>
|
|
28
|
+
<ObjectID>21711373-72c1-ec11-b83b-shared</ObjectID>
|
|
29
|
+
<CustomerKey>testExisting_dataExtensionShared</CustomerKey>
|
|
30
|
+
<Name>testExisting_dataExtensionShared</Name>
|
|
31
|
+
<Description>bla bla</Description>
|
|
32
|
+
<IsSendable>true</IsSendable>
|
|
33
|
+
<IsTestable>true</IsTestable>
|
|
34
|
+
<SendableDataExtensionField>
|
|
35
|
+
<PartnerKey xsi:nil="true" />
|
|
36
|
+
<ObjectID xsi:nil="true" />
|
|
37
|
+
<Name>ContactKey</Name>
|
|
38
|
+
</SendableDataExtensionField>
|
|
39
|
+
<SendableSubscriberField>
|
|
40
|
+
<Name>_SubscriberKey</Name>
|
|
41
|
+
</SendableSubscriberField>
|
|
42
|
+
<DataRetentionPeriodLength>6</DataRetentionPeriodLength>
|
|
43
|
+
<DataRetentionPeriodUnitOfMeasure>5</DataRetentionPeriodUnitOfMeasure>
|
|
44
|
+
<RowBasedRetention>true</RowBasedRetention>
|
|
45
|
+
<ResetRetentionPeriodOnImport>false</ResetRetentionPeriodOnImport>
|
|
46
|
+
<DeleteAtEndOfRetentionPeriod>false</DeleteAtEndOfRetentionPeriod>
|
|
47
|
+
<RetainUntil />
|
|
48
|
+
<CategoryID>89356</CategoryID>
|
|
49
|
+
</Results>
|
|
24
50
|
</RetrieveResponseMsg>
|
|
25
51
|
</soap:Body>
|
|
26
|
-
</soap:Envelope>
|
|
52
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"CustomerKey": "testExisting_dataExtensionShared",
|
|
3
|
+
"DeleteAtEndOfRetentionPeriod": false,
|
|
4
|
+
"Description": "Container for my test emails",
|
|
5
|
+
"Fields": [
|
|
6
|
+
{
|
|
7
|
+
"DefaultValue": "",
|
|
8
|
+
"FieldType": "Text",
|
|
9
|
+
"IsPrimaryKey": false,
|
|
10
|
+
"IsRequired": false,
|
|
11
|
+
"MaxLength": 50,
|
|
12
|
+
"Name": "FirstName"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"DefaultValue": "",
|
|
16
|
+
"FieldType": "Text",
|
|
17
|
+
"IsPrimaryKey": false,
|
|
18
|
+
"IsRequired": false,
|
|
19
|
+
"MaxLength": 55,
|
|
20
|
+
"Name": "LastName"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"DefaultValue": "",
|
|
24
|
+
"FieldType": "EmailAddress",
|
|
25
|
+
"IsPrimaryKey": false,
|
|
26
|
+
"IsRequired": true,
|
|
27
|
+
"MaxLength": 254,
|
|
28
|
+
"Name": "EmailAddress"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"DefaultValue": "",
|
|
32
|
+
"FieldType": "Text",
|
|
33
|
+
"IsPrimaryKey": true,
|
|
34
|
+
"IsRequired": true,
|
|
35
|
+
"MaxLength": 50,
|
|
36
|
+
"Name": "ContactKey"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"DefaultValue": "",
|
|
40
|
+
"FieldType": "Text",
|
|
41
|
+
"IsPrimaryKey": false,
|
|
42
|
+
"IsRequired": false,
|
|
43
|
+
"MaxLength": 254,
|
|
44
|
+
"Name": "newField"
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"IsSendable": false,
|
|
48
|
+
"IsTestable": false,
|
|
49
|
+
"Name": "testExisting_dataExtensionShared",
|
|
50
|
+
"ResetRetentionPeriodOnImport": false,
|
|
51
|
+
"RetainUntil": "",
|
|
52
|
+
"RowBasedRetention": true,
|
|
53
|
+
"r__folder_ContentType": "shared_dataextension",
|
|
54
|
+
"r__folder_Path": "Shared Items/Shared Data Extensions"
|
|
55
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
5
|
+
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
|
|
6
|
+
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
|
|
7
|
+
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
|
8
|
+
<soap:Header>
|
|
9
|
+
<wsa:Action>UpdateResponse</wsa:Action>
|
|
10
|
+
<wsa:MessageID>urn:uuid:994e213d-1125-450d-b187-32e3870147d1</wsa:MessageID>
|
|
11
|
+
<wsa:RelatesTo>urn:uuid:f1fc86ef-c0c8-4c17-a901-a15fc2631f76</wsa:RelatesTo>
|
|
12
|
+
<wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
|
|
13
|
+
<wsse:Security>
|
|
14
|
+
<wsu:Timestamp wsu:Id="Timestamp-88cf0bce-bf0f-4d5f-90a6-2897708181b5">
|
|
15
|
+
<wsu:Created>2022-04-26T20:49:03Z</wsu:Created>
|
|
16
|
+
<wsu:Expires>2022-04-26T20:54:03Z</wsu:Expires>
|
|
17
|
+
</wsu:Timestamp>
|
|
18
|
+
</wsse:Security>
|
|
19
|
+
</soap:Header>
|
|
20
|
+
<soap:Body>
|
|
21
|
+
<UpdateResponse xmlns="http://exacttarget.com/wsdl/partnerAPI">
|
|
22
|
+
<Results>
|
|
23
|
+
<StatusCode>OK</StatusCode>
|
|
24
|
+
<StatusMessage>Data Extension updated.</StatusMessage>
|
|
25
|
+
<OrdinalID>0</OrdinalID>
|
|
26
|
+
<Object xsi:type="DataExtension">
|
|
27
|
+
<PartnerKey xsi:nil="true" />
|
|
28
|
+
<ObjectID>21711373-72c1-ec11-b83b-shared</ObjectID>
|
|
29
|
+
<CustomerKey>testExisting_dataExtensionShared</CustomerKey>
|
|
30
|
+
<Name>testExisting_dataExtensionShared</Name>
|
|
31
|
+
<Description>Container for my test emails</Description>
|
|
32
|
+
<IsSendable>false</IsSendable>
|
|
33
|
+
<IsTestable>false</IsTestable>
|
|
34
|
+
<RowBasedRetention>false</RowBasedRetention>
|
|
35
|
+
<ResetRetentionPeriodOnImport>false</ResetRetentionPeriodOnImport>
|
|
36
|
+
<DeleteAtEndOfRetentionPeriod>false</DeleteAtEndOfRetentionPeriod>
|
|
37
|
+
<RetainUntil />
|
|
38
|
+
<Fields>
|
|
39
|
+
<Field>
|
|
40
|
+
<PartnerKey xsi:nil="true" />
|
|
41
|
+
<ObjectID xsi:nil="true" />
|
|
42
|
+
<Name>testField</Name>
|
|
43
|
+
<DefaultValue />
|
|
44
|
+
<MaxLength>254</MaxLength>
|
|
45
|
+
<IsRequired>true</IsRequired>
|
|
46
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
47
|
+
<FieldType>Text</FieldType>
|
|
48
|
+
</Field>
|
|
49
|
+
</Fields>
|
|
50
|
+
<CategoryID>89356</CategoryID>
|
|
51
|
+
</Object>
|
|
52
|
+
</Results>
|
|
53
|
+
<RequestID>dbfedcb6-a809-4101-b314-a7b920c9fb1e</RequestID>
|
|
54
|
+
<OverallStatus>OK</OverallStatus>
|
|
55
|
+
</UpdateResponse>
|
|
56
|
+
</soap:Body>
|
|
57
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
5
|
+
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
|
|
6
|
+
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
|
|
7
|
+
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
|
8
|
+
<soap:Header>
|
|
9
|
+
<wsa:Action>RetrieveResponse</wsa:Action>
|
|
10
|
+
<wsa:MessageID>urn:uuid:6d2f81c8-80ab-44d5-8664-206753e7ac8d</wsa:MessageID>
|
|
11
|
+
<wsa:RelatesTo>urn:uuid:a7354389-079e-4844-93b5-af6b7bf1d535</wsa:RelatesTo>
|
|
12
|
+
<wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
|
|
13
|
+
<wsse:Security>
|
|
14
|
+
<wsu:Timestamp wsu:Id="Timestamp-468a08b7-c8fd-44bf-a2c8-fd6063127ca6">
|
|
15
|
+
<wsu:Created>2022-04-21T19:21:52Z</wsu:Created>
|
|
16
|
+
<wsu:Expires>2022-04-21T19:26:52Z</wsu:Expires>
|
|
17
|
+
</wsu:Timestamp>
|
|
18
|
+
</wsse:Security>
|
|
19
|
+
</soap:Header>
|
|
20
|
+
<soap:Body>
|
|
21
|
+
<RetrieveResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
|
|
22
|
+
<OverallStatus>OK</OverallStatus>
|
|
23
|
+
<RequestID>cfe51e71-6a2b-4cb4-aecd-3777076d63bc</RequestID>
|
|
24
|
+
<Results xsi:type="DataExtensionField">
|
|
25
|
+
<PartnerKey xsi:nil="true" />
|
|
26
|
+
<ObjectID>TriggerUpdate-8018397d-880d-4f88-940e-3b4eca098a0c</ObjectID>
|
|
27
|
+
<CustomerKey>[testExisting_dataExtensionShared].[TriggerUpdate_randomNumber_]</CustomerKey>
|
|
28
|
+
<Name>TriggerUpdate_randomNumber_</Name>
|
|
29
|
+
<Scale>0</Scale>
|
|
30
|
+
<DefaultValue />
|
|
31
|
+
<MaxLength>50</MaxLength>
|
|
32
|
+
<IsRequired>true</IsRequired>
|
|
33
|
+
<Ordinal>3</Ordinal>
|
|
34
|
+
<IsPrimaryKey>true</IsPrimaryKey>
|
|
35
|
+
<FieldType>Text</FieldType>
|
|
36
|
+
<DataExtension>
|
|
37
|
+
<PartnerKey xsi:nil="true" />
|
|
38
|
+
<ObjectID xsi:nil="true" />
|
|
39
|
+
<CustomerKey>testExisting_dataExtensionShared</CustomerKey>
|
|
40
|
+
</DataExtension>
|
|
41
|
+
</Results>
|
|
42
|
+
|
|
43
|
+
</RetrieveResponseMsg>
|
|
44
|
+
</soap:Body>
|
|
45
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
5
|
+
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
|
|
6
|
+
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
|
|
7
|
+
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
|
8
|
+
<soap:Header>
|
|
9
|
+
<wsa:Action>RetrieveResponse</wsa:Action>
|
|
10
|
+
<wsa:MessageID>urn:uuid:6d2f81c8-80ab-44d5-8664-206753e7ac8d</wsa:MessageID>
|
|
11
|
+
<wsa:RelatesTo>urn:uuid:a7354389-079e-4844-93b5-af6b7bf1d535</wsa:RelatesTo>
|
|
12
|
+
<wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
|
|
13
|
+
<wsse:Security>
|
|
14
|
+
<wsu:Timestamp wsu:Id="Timestamp-468a08b7-c8fd-44bf-a2c8-fd6063127ca6">
|
|
15
|
+
<wsu:Created>2022-04-21T19:21:52Z</wsu:Created>
|
|
16
|
+
<wsu:Expires>2022-04-21T19:26:52Z</wsu:Expires>
|
|
17
|
+
</wsu:Timestamp>
|
|
18
|
+
</wsse:Security>
|
|
19
|
+
</soap:Header>
|
|
20
|
+
<soap:Body>
|
|
21
|
+
<RetrieveResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
|
|
22
|
+
<OverallStatus>OK</OverallStatus>
|
|
23
|
+
<RequestID>cfe51e71-6a2b-4cb4-aecd-3777076d63bc</RequestID>
|
|
24
|
+
<Results xsi:type="DataExtensionField">
|
|
25
|
+
<PartnerKey xsi:nil="true" />
|
|
26
|
+
<ObjectID>shared-8018397d-880d-4f88-940e-3b4eca098a0c</ObjectID>
|
|
27
|
+
<CustomerKey>[testExisting_dataExtensionShared].[ContactKey]</CustomerKey>
|
|
28
|
+
<Name>ContactKey</Name>
|
|
29
|
+
<Scale>0</Scale>
|
|
30
|
+
<DefaultValue />
|
|
31
|
+
<MaxLength>50</MaxLength>
|
|
32
|
+
<IsRequired>true</IsRequired>
|
|
33
|
+
<Ordinal>3</Ordinal>
|
|
34
|
+
<IsPrimaryKey>true</IsPrimaryKey>
|
|
35
|
+
<FieldType>Text</FieldType>
|
|
36
|
+
<DataExtension>
|
|
37
|
+
<PartnerKey xsi:nil="true" />
|
|
38
|
+
<ObjectID xsi:nil="true" />
|
|
39
|
+
<CustomerKey>testExisting_dataExtensionShared</CustomerKey>
|
|
40
|
+
</DataExtension>
|
|
41
|
+
</Results>
|
|
42
|
+
<Results xsi:type="DataExtensionField">
|
|
43
|
+
<PartnerKey xsi:nil="true" />
|
|
44
|
+
<ObjectID>shared-bea0e308-5d45-4181-a673-da9972a7c674</ObjectID>
|
|
45
|
+
<CustomerKey>[testExisting_dataExtensionShared].[LastName]</CustomerKey>
|
|
46
|
+
<Name>LastName</Name>
|
|
47
|
+
<Scale>0</Scale>
|
|
48
|
+
<DefaultValue />
|
|
49
|
+
<MaxLength>50</MaxLength>
|
|
50
|
+
<IsRequired>false</IsRequired>
|
|
51
|
+
<Ordinal>1</Ordinal>
|
|
52
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
53
|
+
<FieldType>Text</FieldType>
|
|
54
|
+
<DataExtension>
|
|
55
|
+
<PartnerKey xsi:nil="true" />
|
|
56
|
+
<ObjectID xsi:nil="true" />
|
|
57
|
+
<CustomerKey>testExisting_dataExtensionShared</CustomerKey>
|
|
58
|
+
</DataExtension>
|
|
59
|
+
</Results>
|
|
60
|
+
<Results xsi:type="DataExtensionField">
|
|
61
|
+
<PartnerKey xsi:nil="true" />
|
|
62
|
+
<ObjectID>shared-2557b461-a699-4744-950d-e80a19afc2dc</ObjectID>
|
|
63
|
+
<CustomerKey>[testExisting_dataExtensionShared].[EmailAddress]</CustomerKey>
|
|
64
|
+
<Name>EmailAddress</Name>
|
|
65
|
+
<Scale>0</Scale>
|
|
66
|
+
<DefaultValue />
|
|
67
|
+
<MaxLength>254</MaxLength>
|
|
68
|
+
<IsRequired>true</IsRequired>
|
|
69
|
+
<Ordinal>2</Ordinal>
|
|
70
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
71
|
+
<FieldType>EmailAddress</FieldType>
|
|
72
|
+
<DataExtension>
|
|
73
|
+
<PartnerKey xsi:nil="true" />
|
|
74
|
+
<ObjectID xsi:nil="true" />
|
|
75
|
+
<CustomerKey>testExisting_dataExtensionShared</CustomerKey>
|
|
76
|
+
</DataExtension>
|
|
77
|
+
</Results>
|
|
78
|
+
<Results xsi:type="DataExtensionField">
|
|
79
|
+
<PartnerKey xsi:nil="true" />
|
|
80
|
+
<ObjectID>shared-42760528-a8c5-44dd-8c1d-ff34e5daee54</ObjectID>
|
|
81
|
+
<CustomerKey>[testExisting_dataExtensionShared].[FirstName]</CustomerKey>
|
|
82
|
+
<Name>FirstName</Name>
|
|
83
|
+
<Scale>0</Scale>
|
|
84
|
+
<DefaultValue />
|
|
85
|
+
<MaxLength>50</MaxLength>
|
|
86
|
+
<IsRequired>false</IsRequired>
|
|
87
|
+
<Ordinal>0</Ordinal>
|
|
88
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
89
|
+
<FieldType>Text</FieldType>
|
|
90
|
+
<DataExtension>
|
|
91
|
+
<PartnerKey xsi:nil="true" />
|
|
92
|
+
<ObjectID xsi:nil="true" />
|
|
93
|
+
<CustomerKey>testExisting_dataExtensionShared</CustomerKey>
|
|
94
|
+
</DataExtension>
|
|
95
|
+
</Results>
|
|
96
|
+
</RetrieveResponseMsg>
|
|
97
|
+
</soap:Body>
|
|
98
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
5
|
+
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
|
|
6
|
+
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
|
|
7
|
+
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
|
8
|
+
<soap:Header>
|
|
9
|
+
<wsa:Action>RetrieveResponse</wsa:Action>
|
|
10
|
+
<wsa:MessageID>urn:uuid:6d2f81c8-80ab-44d5-8664-206753e7ac8d</wsa:MessageID>
|
|
11
|
+
<wsa:RelatesTo>urn:uuid:a7354389-079e-4844-93b5-af6b7bf1d535</wsa:RelatesTo>
|
|
12
|
+
<wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
|
|
13
|
+
<wsse:Security>
|
|
14
|
+
<wsu:Timestamp wsu:Id="Timestamp-468a08b7-c8fd-44bf-a2c8-fd6063127ca6">
|
|
15
|
+
<wsu:Created>2022-04-21T19:21:52Z</wsu:Created>
|
|
16
|
+
<wsu:Expires>2022-04-21T19:26:52Z</wsu:Expires>
|
|
17
|
+
</wsu:Timestamp>
|
|
18
|
+
</wsse:Security>
|
|
19
|
+
</soap:Header>
|
|
20
|
+
<soap:Body>
|
|
21
|
+
<RetrieveResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
|
|
22
|
+
<OverallStatus>OK</OverallStatus>
|
|
23
|
+
<RequestID>cfe51e71-6a2b-4cb4-aecd-3777076d63bc</RequestID>
|
|
24
|
+
<Results xsi:type="DataExtensionField">
|
|
25
|
+
<PartnerKey xsi:nil="true" />
|
|
26
|
+
<ObjectID>shared-8018397d-880d-4f88-940e-3b4eca098a0c</ObjectID>
|
|
27
|
+
<CustomerKey>[testExisting_dataExtensionShared].[ContactKey]</CustomerKey>
|
|
28
|
+
<Name>ContactKey</Name>
|
|
29
|
+
<Scale>0</Scale>
|
|
30
|
+
<DefaultValue />
|
|
31
|
+
<MaxLength>50</MaxLength>
|
|
32
|
+
<IsRequired>true</IsRequired>
|
|
33
|
+
<Ordinal>3</Ordinal>
|
|
34
|
+
<IsPrimaryKey>true</IsPrimaryKey>
|
|
35
|
+
<FieldType>Text</FieldType>
|
|
36
|
+
<DataExtension>
|
|
37
|
+
<PartnerKey xsi:nil="true" />
|
|
38
|
+
<ObjectID xsi:nil="true" />
|
|
39
|
+
<CustomerKey>testExisting_dataExtensionShared</CustomerKey>
|
|
40
|
+
</DataExtension>
|
|
41
|
+
</Results>
|
|
42
|
+
<Results xsi:type="DataExtensionField">
|
|
43
|
+
<PartnerKey xsi:nil="true" />
|
|
44
|
+
<ObjectID>shared-bea0e308-5d45-4181-a673-da9972a7c674</ObjectID>
|
|
45
|
+
<CustomerKey>[testExisting_dataExtensionShared].[LastName]</CustomerKey>
|
|
46
|
+
<Name>LastName</Name>
|
|
47
|
+
<Scale>0</Scale>
|
|
48
|
+
<DefaultValue />
|
|
49
|
+
<MaxLength>50</MaxLength>
|
|
50
|
+
<IsRequired>false</IsRequired>
|
|
51
|
+
<Ordinal>1</Ordinal>
|
|
52
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
53
|
+
<FieldType>Text</FieldType>
|
|
54
|
+
<DataExtension>
|
|
55
|
+
<PartnerKey xsi:nil="true" />
|
|
56
|
+
<ObjectID xsi:nil="true" />
|
|
57
|
+
<CustomerKey>testExisting_dataExtensionShared</CustomerKey>
|
|
58
|
+
</DataExtension>
|
|
59
|
+
</Results>
|
|
60
|
+
<Results xsi:type="DataExtensionField">
|
|
61
|
+
<PartnerKey xsi:nil="true" />
|
|
62
|
+
<ObjectID>shared-2557b461-a699-4744-950d-e80a19afc2dc</ObjectID>
|
|
63
|
+
<CustomerKey>[testExisting_dataExtensionShared].[EmailAddress]</CustomerKey>
|
|
64
|
+
<Name>EmailAddress</Name>
|
|
65
|
+
<Scale>0</Scale>
|
|
66
|
+
<DefaultValue />
|
|
67
|
+
<MaxLength>254</MaxLength>
|
|
68
|
+
<IsRequired>true</IsRequired>
|
|
69
|
+
<Ordinal>2</Ordinal>
|
|
70
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
71
|
+
<FieldType>EmailAddress</FieldType>
|
|
72
|
+
<DataExtension>
|
|
73
|
+
<PartnerKey xsi:nil="true" />
|
|
74
|
+
<ObjectID xsi:nil="true" />
|
|
75
|
+
<CustomerKey>testExisting_dataExtensionShared</CustomerKey>
|
|
76
|
+
</DataExtension>
|
|
77
|
+
</Results>
|
|
78
|
+
<Results xsi:type="DataExtensionField">
|
|
79
|
+
<PartnerKey xsi:nil="true" />
|
|
80
|
+
<ObjectID>shared-42760528-a8c5-44dd-8c1d-ff34e5daee54</ObjectID>
|
|
81
|
+
<CustomerKey>[testExisting_dataExtensionShared].[FirstName]</CustomerKey>
|
|
82
|
+
<Name>FirstName</Name>
|
|
83
|
+
<Scale>0</Scale>
|
|
84
|
+
<DefaultValue />
|
|
85
|
+
<MaxLength>50</MaxLength>
|
|
86
|
+
<IsRequired>false</IsRequired>
|
|
87
|
+
<Ordinal>0</Ordinal>
|
|
88
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
89
|
+
<FieldType>Text</FieldType>
|
|
90
|
+
<DataExtension>
|
|
91
|
+
<PartnerKey xsi:nil="true" />
|
|
92
|
+
<ObjectID xsi:nil="true" />
|
|
93
|
+
<CustomerKey>testExisting_dataExtensionShared</CustomerKey>
|
|
94
|
+
</DataExtension>
|
|
95
|
+
</Results>
|
|
96
|
+
</RetrieveResponseMsg>
|
|
97
|
+
</soap:Body>
|
|
98
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
5
|
+
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
|
|
6
|
+
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
|
|
7
|
+
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
|
8
|
+
<soap:Header>
|
|
9
|
+
<wsa:Action>RetrieveResponse</wsa:Action>
|
|
10
|
+
<wsa:MessageID>urn:uuid:6d2f81c8-80ab-44d5-8664-206753e7ac8d</wsa:MessageID>
|
|
11
|
+
<wsa:RelatesTo>urn:uuid:a7354389-079e-4844-93b5-af6b7bf1d535</wsa:RelatesTo>
|
|
12
|
+
<wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
|
|
13
|
+
<wsse:Security>
|
|
14
|
+
<wsu:Timestamp wsu:Id="Timestamp-468a08b7-c8fd-44bf-a2c8-fd6063127ca6">
|
|
15
|
+
<wsu:Created>2022-04-21T19:21:52Z</wsu:Created>
|
|
16
|
+
<wsu:Expires>2022-04-21T19:26:52Z</wsu:Expires>
|
|
17
|
+
</wsu:Timestamp>
|
|
18
|
+
</wsse:Security>
|
|
19
|
+
</soap:Header>
|
|
20
|
+
<soap:Body>
|
|
21
|
+
<RetrieveResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
|
|
22
|
+
<OverallStatus>OK</OverallStatus>
|
|
23
|
+
<RequestID>cfe51e71-6a2b-4cb4-aecd-3777076d63bc</RequestID>
|
|
24
|
+
<Results xsi:type="DataExtensionField">
|
|
25
|
+
<PartnerKey xsi:nil="true" />
|
|
26
|
+
<ObjectID>shared-8018397d-880d-4f88-940e-3b4eca098a0c</ObjectID>
|
|
27
|
+
<CustomerKey>[testExisting_dataExtensionShared].[ContactKey]</CustomerKey>
|
|
28
|
+
<Name>ContactKey</Name>
|
|
29
|
+
<Scale>0</Scale>
|
|
30
|
+
<DefaultValue />
|
|
31
|
+
<MaxLength>50</MaxLength>
|
|
32
|
+
<IsRequired>true</IsRequired>
|
|
33
|
+
<Ordinal>3</Ordinal>
|
|
34
|
+
<IsPrimaryKey>true</IsPrimaryKey>
|
|
35
|
+
<FieldType>Text</FieldType>
|
|
36
|
+
<DataExtension>
|
|
37
|
+
<PartnerKey xsi:nil="true" />
|
|
38
|
+
<ObjectID xsi:nil="true" />
|
|
39
|
+
<CustomerKey>testExisting_dataExtensionShared</CustomerKey>
|
|
40
|
+
</DataExtension>
|
|
41
|
+
</Results>
|
|
42
|
+
<Results xsi:type="DataExtensionField">
|
|
43
|
+
<PartnerKey xsi:nil="true" />
|
|
44
|
+
<ObjectID>shared-bea0e308-5d45-4181-a673-da9972a7c674</ObjectID>
|
|
45
|
+
<CustomerKey>[testExisting_dataExtensionShared].[LastName]</CustomerKey>
|
|
46
|
+
<Name>LastName</Name>
|
|
47
|
+
<Scale>0</Scale>
|
|
48
|
+
<DefaultValue />
|
|
49
|
+
<MaxLength>50</MaxLength>
|
|
50
|
+
<IsRequired>false</IsRequired>
|
|
51
|
+
<Ordinal>1</Ordinal>
|
|
52
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
53
|
+
<FieldType>Text</FieldType>
|
|
54
|
+
<DataExtension>
|
|
55
|
+
<PartnerKey xsi:nil="true" />
|
|
56
|
+
<ObjectID xsi:nil="true" />
|
|
57
|
+
<CustomerKey>testExisting_dataExtensionShared</CustomerKey>
|
|
58
|
+
</DataExtension>
|
|
59
|
+
</Results>
|
|
60
|
+
<Results xsi:type="DataExtensionField">
|
|
61
|
+
<PartnerKey xsi:nil="true" />
|
|
62
|
+
<ObjectID>shared-2557b461-a699-4744-950d-e80a19afc2dc</ObjectID>
|
|
63
|
+
<CustomerKey>[testExisting_dataExtensionShared].[EmailAddress]</CustomerKey>
|
|
64
|
+
<Name>EmailAddress</Name>
|
|
65
|
+
<Scale>0</Scale>
|
|
66
|
+
<DefaultValue />
|
|
67
|
+
<MaxLength>254</MaxLength>
|
|
68
|
+
<IsRequired>true</IsRequired>
|
|
69
|
+
<Ordinal>2</Ordinal>
|
|
70
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
71
|
+
<FieldType>EmailAddress</FieldType>
|
|
72
|
+
<DataExtension>
|
|
73
|
+
<PartnerKey xsi:nil="true" />
|
|
74
|
+
<ObjectID xsi:nil="true" />
|
|
75
|
+
<CustomerKey>testExisting_dataExtensionShared</CustomerKey>
|
|
76
|
+
</DataExtension>
|
|
77
|
+
</Results>
|
|
78
|
+
<Results xsi:type="DataExtensionField">
|
|
79
|
+
<PartnerKey xsi:nil="true" />
|
|
80
|
+
<ObjectID>shared-42760528-a8c5-44dd-8c1d-ff34e5daee54</ObjectID>
|
|
81
|
+
<CustomerKey>[testExisting_dataExtensionShared].[FirstName]</CustomerKey>
|
|
82
|
+
<Name>FirstName</Name>
|
|
83
|
+
<Scale>0</Scale>
|
|
84
|
+
<DefaultValue />
|
|
85
|
+
<MaxLength>50</MaxLength>
|
|
86
|
+
<IsRequired>false</IsRequired>
|
|
87
|
+
<Ordinal>0</Ordinal>
|
|
88
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
89
|
+
<FieldType>Text</FieldType>
|
|
90
|
+
<DataExtension>
|
|
91
|
+
<PartnerKey xsi:nil="true" />
|
|
92
|
+
<ObjectID xsi:nil="true" />
|
|
93
|
+
<CustomerKey>testExisting_dataExtensionShared</CustomerKey>
|
|
94
|
+
</DataExtension>
|
|
95
|
+
</Results>
|
|
96
|
+
</RetrieveResponseMsg>
|
|
97
|
+
</soap:Body>
|
|
98
|
+
</soap:Envelope>
|