mcdev 5.0.2 → 5.2.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/.coverage-comment-template.svelte +177 -161
- package/.eslintrc.json +4 -4
- package/.github/ISSUE_TEMPLATE/bug.yml +2 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +2 -2
- package/.github/dependabot.yml +8 -0
- package/.github/workflows/coverage-base-update.yml +6 -2
- package/.github/workflows/coverage-develop-branch.yml +7 -8
- package/.github/workflows/coverage-main-branch.yml +7 -8
- package/.github/workflows/coverage.yml +7 -4
- package/.husky/post-checkout +4 -2
- package/.husky/post-merge +1 -0
- package/.vscode/extensions.json +4 -0
- package/docs/dist/documentation.md +756 -294
- package/lib/Deployer.js +28 -28
- package/lib/MetadataTypeDefinitions.js +1 -1
- package/lib/MetadataTypeInfo.js +1 -1
- package/lib/Retriever.js +1 -1
- package/lib/cli.js +184 -6
- package/lib/index.js +493 -22
- package/lib/metadataTypes/Asset.js +10 -11
- package/lib/metadataTypes/AttributeGroup.js +76 -2
- package/lib/metadataTypes/AttributeSet.js +260 -0
- package/lib/metadataTypes/Automation.js +771 -247
- package/lib/metadataTypes/DataExtension.js +7 -7
- package/lib/metadataTypes/DataExtensionField.js +1 -1
- package/lib/metadataTypes/Event.js +2 -3
- package/lib/metadataTypes/Folder.js +1 -1
- package/lib/metadataTypes/Journey.js +5 -6
- package/lib/metadataTypes/MetadataType.js +187 -60
- package/lib/metadataTypes/MobileKeyword.js +8 -8
- package/lib/metadataTypes/MobileMessage.js +5 -5
- package/lib/metadataTypes/Query.js +47 -5
- package/lib/metadataTypes/Script.js +3 -3
- package/lib/metadataTypes/TransactionalSMS.js +5 -5
- package/lib/metadataTypes/TriggeredSend.js +25 -50
- package/lib/metadataTypes/User.js +7 -4
- package/lib/metadataTypes/definitions/Asset.definition.js +1 -0
- package/lib/metadataTypes/definitions/AttributeGroup.definition.js +117 -106
- package/lib/metadataTypes/definitions/{SetDefinition.definition.js → AttributeSet.definition.js} +54 -27
- package/lib/metadataTypes/definitions/Automation.definition.js +74 -21
- package/lib/metadataTypes/definitions/DataExtension.definition.js +1 -0
- package/lib/metadataTypes/definitions/DataExtract.definition.js +1 -0
- package/lib/metadataTypes/definitions/EmailSend.definition.js +1 -0
- package/lib/metadataTypes/definitions/Event.definition.js +1 -0
- package/lib/metadataTypes/definitions/Filter.definition.js +1 -0
- package/lib/metadataTypes/definitions/ImportFile.definition.js +37 -6
- package/lib/metadataTypes/definitions/MobileKeyword.definition.js +1 -0
- package/lib/metadataTypes/definitions/Query.definition.js +1 -0
- package/lib/metadataTypes/definitions/Role.definition.js +1 -0
- package/lib/metadataTypes/definitions/TriggeredSend.definition.js +2 -0
- package/lib/metadataTypes/definitions/User.definition.js +1 -0
- package/lib/util/cache.js +9 -4
- package/lib/util/cli.js +40 -0
- package/lib/util/devops.js +13 -11
- package/lib/util/file.js +2 -2
- package/lib/util/init.js +84 -0
- package/lib/util/util.js +268 -137
- package/package.json +11 -11
- package/test/general.test.js +26 -0
- package/test/mockRoot/.mcdevrc.json +1 -1
- package/test/mockRoot/deploy/testInstance/testBU/automation/testExisting_automation.automation-meta.json +52 -0
- package/test/mockRoot/deploy/testInstance/testBU/automation/testNew_automation.automation-meta.json +45 -0
- package/test/mockRoot/deploy/testInstance/testBU/dataExtract/testExisting_dataExtract.dataExtract-meta.json +35 -0
- package/test/mockRoot/deploy/testInstance/testBU/dataExtract/testNew_dataExtract.dataExtract-meta.json +35 -0
- package/test/mockRoot/deploy/testInstance/testBU/fileTransfer/testExisting_fileTransfer.fileTransfer-meta.json +17 -0
- package/test/mockRoot/deploy/testInstance/testBU/fileTransfer/testNew_fileTransfer.fileTransfer-meta.json +17 -0
- package/test/mockRoot/deploy/testInstance/testBU/importFile/testExisting_importFile.importFile-meta.json +29 -0
- package/test/mockRoot/deploy/testInstance/testBU/importFile/testNew_importFile.importFile-meta.json +29 -0
- package/test/mockRoot/deploy/testInstance/testBU/query/{testExistingQuery.query-meta.json → testExisting_query.query-meta.json} +2 -2
- package/test/mockRoot/deploy/testInstance/testBU/query/testExisting_query_fixKeys.query-meta.json +11 -0
- package/test/mockRoot/deploy/testInstance/testBU/query/testExisting_query_fixKeys.query-meta.sql +6 -0
- package/test/mockRoot/deploy/testInstance/testBU/query/{testNewQuery.query-meta.json → testNew_query.query-meta.json} +2 -2
- package/test/mockRoot/deploy/testInstance/testBU/script/testExisting_script.script-meta.json +6 -0
- package/test/mockRoot/deploy/testInstance/testBU/script/testExisting_script.script-meta.ssjs +1 -0
- package/test/mockRoot/deploy/testInstance/testBU/script/testNew_script.script-meta.json +6 -0
- package/test/mockRoot/deploy/testInstance/testBU/script/testNew_script.script-meta.ssjs +1 -0
- package/test/mockRoot/deploy/testInstance/testBU/triggeredSend/testExisting_triggeredSend.triggeredSend-meta.json +29 -0
- package/test/mockRoot/deploy/testInstance/testBU/triggeredSend/testNew_triggeredSend.triggeredSend-meta.json +29 -0
- package/test/resourceFactory.js +132 -24
- package/test/resources/1111111/accountUser/retrieve-ActiveFlag=falseANDCustomerKey=testExisting_userANDEmaillike@-response.xml +27 -0
- package/test/resources/1111111/accountUser/retrieve-ActiveFlag=falseANDEmaillike@-response.xml +156 -0
- package/test/resources/1111111/accountUser/retrieve-ActiveFlag=trueANDEmailisNullORNamelikeapp userANDMustChangePassword=false-response.xml +87 -0
- package/test/resources/1111111/accountUser/retrieve-ActiveFlag=trueANDEmaillike@-response.xml +156 -0
- package/test/resources/1111111/accountUser/retrieve-CustomerKey=testExisting_userANDActiveFlag=trueANDEmailisNullORNamelikeapp userANDMustChangePassword=false-response.xml +27 -0
- package/test/resources/1111111/accountUserAccount/retrieve-AccountUser.AccountUserID=700301950-response.xml +60 -0
- package/test/resources/1111111/user/retrieve-expected.md +4 -2
- package/test/resources/9999999/attributeGroup/retrieve-expected.json +25 -0
- package/test/resources/9999999/attributeSet/retrieve-expected.json +748 -0
- package/test/resources/9999999/automation/build-expected.json +57 -0
- package/test/resources/9999999/automation/create-expected.json +45 -0
- package/test/resources/9999999/automation/create-testNew_automation-expected.md +28 -0
- package/test/resources/9999999/automation/delete-response.xml +40 -0
- package/test/resources/9999999/automation/patch_fixKeys-pause-expected.json +44 -0
- package/test/resources/9999999/automation/patch_fixKeys-schedule-expected.json +44 -0
- package/test/resources/9999999/automation/perform-08afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +42 -0
- package/test/resources/9999999/automation/perform-08afb0e2-b00a-4c88-fixKey_pause-response.xml +42 -0
- package/test/resources/9999999/automation/perform-08afb0e2-b00a-4c88-fixKey_schedule-response.xml +42 -0
- package/test/resources/9999999/automation/perform-a8afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +42 -0
- package/test/resources/9999999/automation/retrieve-expected.json +57 -0
- package/test/resources/9999999/automation/retrieve-testExisting_automation-expected.md +30 -0
- package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +52 -0
- package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-ad2e-pause-response.xml +38 -0
- package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-fixKey_pause-response.xml +52 -0
- package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-fixKey_schedule-response.xml +52 -0
- package/test/resources/9999999/automation/schedule-a8afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +52 -0
- package/test/resources/9999999/automation/template-expected.json +57 -0
- package/test/resources/9999999/automation/update-expected.json +45 -0
- package/test/resources/9999999/automation/update-testExisting_automation-expected.md +28 -0
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-1f7f8788c560/get-response.json +85 -0
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-1f7f8788c560/patch-response.json +85 -0
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-pause/get-response.json +85 -0
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-pause/patch-response.json +85 -0
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_pause/get-response.json +85 -0
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_pause/patch-response.json +85 -0
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_schedule/get-response.json +85 -0
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_schedule/patch-response.json +85 -0
- package/test/resources/9999999/automation/v1/automations/a8afb0e2-b00a-4c88-ad2e-1f7f8788c560/get-response.json +85 -0
- package/test/resources/9999999/automation/v1/automations/post-response.json +86 -0
- package/test/resources/9999999/automation/v1/dataextracts/56c5370a-f988-4f36-b0ee-0f876573f6d7/get-response.json +38 -0
- package/test/resources/9999999/automation/v1/dataextracts/56c5370a-f988-4f36-b0ee-0f876573f6d7/patch-response.json +38 -0
- package/test/resources/9999999/automation/v1/dataextracts/get-response.json +20 -0
- package/test/resources/9999999/automation/v1/dataextracts/post-response.json +38 -0
- package/test/resources/9999999/automation/v1/dataextracttypes/get-response.json +50 -0
- package/test/resources/9999999/automation/v1/filetransfers/72c328ac-f5b0-4e37-91d3-a775666f15a6/get-response.json +18 -0
- package/test/resources/9999999/automation/v1/filetransfers/72c328ac-f5b0-4e37-91d3-a775666f15a6/patch-response.json +18 -0
- package/test/resources/9999999/automation/v1/filetransfers/get-response.json +15 -0
- package/test/resources/9999999/automation/v1/filetransfers/post-response.json +18 -0
- package/test/resources/9999999/automation/v1/ftplocations/get-response.json +18 -0
- package/test/resources/9999999/automation/v1/imports/9d16f42c-2260-ed11-b849-48df37d1de8b/patch-response.json +31 -0
- package/test/resources/9999999/automation/v1/imports/get-response.json +38 -0
- package/test/resources/9999999/automation/v1/imports/post-response.json +30 -0
- package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dae/actions/start/post-response.txt +1 -0
- package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat/actions/start/post-response.txt +1 -0
- package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat/get-response.json +2 -2
- package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat/patch-response.json +2 -2
- package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat_fixKeys/get-response.json +17 -0
- package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat_fixKeys/patch-response.json +18 -0
- package/test/resources/9999999/automation/v1/queries/get-response.json +22 -5
- package/test/resources/9999999/automation/v1/queries/post-response.json +2 -2
- package/test/resources/9999999/automation/v1/scripts/39f6a488-20eb-4ba0-b0b9-023725b574e4/patch-response.json +10 -0
- package/test/resources/9999999/automation/v1/scripts/get-response.json +27 -0
- package/test/resources/9999999/automation/v1/scripts/post-response.json +10 -0
- package/test/resources/9999999/dataExtension/retrieve-Name=testExisting_dataExtension-response.xml +52 -0
- package/test/resources/9999999/dataExtensionField/retrieve-DataExtension.CustomerKey=testExisting_dataExtension-response.xml +98 -0
- package/test/resources/9999999/dataExtensionField/retrieve-DataExtension.CustomerKey=testNew_dataExtensionORDataExtension.CustomerKey=testExisting_dataExtension-response.xml +99 -0
- package/test/resources/9999999/dataExtract/build-expected.json +35 -0
- package/test/resources/9999999/dataExtract/get-expected.json +39 -0
- package/test/resources/9999999/dataExtract/patch-expected.json +37 -0
- package/test/resources/9999999/dataExtract/post-expected.json +37 -0
- package/test/resources/9999999/dataExtract/template-expected.json +35 -0
- package/test/resources/9999999/dataFolder/retrieve-ContentType=automations-response.xml +48 -0
- package/test/resources/9999999/dataFolder/retrieve-ContentType=contextual_suppression_listORContentType=publicationORContentType=suppression_listORContentType=mysubsORContentType=list-response.xml +136 -0
- package/test/resources/9999999/dataFolder/retrieve-ContentType=queryactivity-response.xml +48 -0
- package/test/resources/9999999/dataFolder/retrieve-ContentType=ssjsactivity-response.xml +48 -0
- package/test/resources/9999999/dataFolder/retrieve-ContentType=triggered_send_journeybuilderORContentType=triggered_sendORContentType=hidden-response.xml +276 -0
- package/test/resources/9999999/dataFolder/retrieve-response.xml +45 -0
- package/test/resources/9999999/email/retrieve-response.xml +203 -0
- package/test/resources/9999999/emailSendDefinition/retrieve-IsPlatformObject=falseANDDescriptionnotEqualsSFSendDefinition-response.xml +85 -0
- package/test/resources/9999999/fileTransfer/build-expected.json +15 -0
- package/test/resources/9999999/fileTransfer/get-expected.json +17 -0
- package/test/resources/9999999/fileTransfer/patch-expected.json +17 -0
- package/test/resources/9999999/fileTransfer/post-expected.json +17 -0
- package/test/resources/9999999/fileTransfer/template-expected.json +15 -0
- package/test/resources/9999999/hub/v1/contacts/schema/attributeGroups/get-response.json +585 -0
- package/test/resources/9999999/hub/v1/contacts/schema/setDefinitions/get-response.json +19807 -0
- package/test/resources/9999999/importFile/build-expected.json +27 -0
- package/test/resources/9999999/importFile/get-expected.json +29 -0
- package/test/resources/9999999/importFile/patch-expected.json +29 -0
- package/test/resources/9999999/importFile/post-expected.json +29 -0
- package/test/resources/9999999/importFile/template-expected.json +27 -0
- package/test/resources/9999999/legacy/v1/beta/automations/notifications/RkpOcE9qSVh2VUdnYTVJbWFfWW14dzoyNTow/get-response.json +21 -0
- package/test/resources/9999999/legacy/v1/beta/automations/notifications/RkpOcE9qSVh2VUdnYTVJbWFfWW14dzoyNTow/post-response.json +0 -0
- package/test/resources/9999999/legacy/v1/beta/bulk/automations/automation/definition/get-response.json +30 -0
- package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation-response.xml +30 -0
- package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixKey_pause-response.xml +32 -0
- package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixKey_schedule-response.xml +32 -0
- package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixedKey_paused-response.xml +32 -0
- package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixedKey_scheduled-response.xml +32 -0
- package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_pause-response.xml +30 -0
- package/test/resources/9999999/program/retrieve-CustomerKey=testNew_automation-response.xml +30 -0
- package/test/resources/9999999/program/retrieve-Name=testExisting_automation-response.xml +31 -0
- package/test/resources/9999999/program/retrieve-response.xml +50 -0
- package/test/resources/9999999/query/build-expected.json +2 -2
- package/test/resources/9999999/query/get-expected.json +2 -2
- package/test/resources/9999999/query/get2-expected.json +2 -2
- package/test/resources/9999999/query/patch-expected.json +2 -2
- package/test/resources/9999999/query/patch_fixKeys-expected.json +11 -0
- package/test/resources/9999999/query/patch_fixKeys-expected.sql +6 -0
- package/test/resources/9999999/query/post-expected.json +2 -2
- package/test/resources/9999999/query/template-expected.json +2 -2
- package/test/resources/9999999/queryDefinition/retrieve-CustomerKey=testExisting_query_fixKeysANDStatus=Active-response.xml +30 -0
- package/test/resources/9999999/queryDefinition/retrieve-CustomerKey=testExisting_query_fixedKeysANDStatus=Active-response.xml +30 -0
- package/test/resources/9999999/queryDefinition/retrieve-CustomerKey=testNew_queryANDStatus=Active-response.xml +30 -0
- package/test/resources/9999999/script/build-expected.json +6 -0
- package/test/resources/9999999/script/build-expected.ssjs +1 -0
- package/test/resources/9999999/script/get-expected.json +8 -0
- package/test/resources/9999999/script/get-expected.ssjs +1 -0
- package/test/resources/9999999/script/get_noScriptTag-expected.html +1 -0
- package/test/resources/9999999/script/get_noScriptTag-expected.json +8 -0
- package/test/resources/9999999/script/patch-expected.json +8 -0
- package/test/resources/9999999/script/patch-expected.ssjs +1 -0
- package/test/resources/9999999/script/post-expected.json +8 -0
- package/test/resources/9999999/script/post-expected.ssjs +1 -0
- package/test/resources/9999999/script/template-expected.json +6 -0
- package/test/resources/9999999/script/template-expected.ssjs +1 -0
- package/test/resources/9999999/triggeredSend/build-expected.json +29 -0
- package/test/resources/9999999/triggeredSend/get-expected.json +29 -0
- package/test/resources/9999999/triggeredSend/patch-expected.json +29 -0
- package/test/resources/9999999/triggeredSend/post-expected.json +29 -0
- package/test/resources/9999999/triggeredSend/template-expected.json +29 -0
- package/test/resources/9999999/triggeredSendDefinition/create-response.xml +75 -0
- package/test/resources/9999999/triggeredSendDefinition/delete-response.xml +36 -0
- package/test/resources/9999999/triggeredSendDefinition/{retrieve-response.xml → retrieve-TriggeredSendStatusINNew,Active,Inactive,Moved,Canceled-response.xml} +4 -4
- package/test/resources/9999999/triggeredSendDefinition/update-response.xml +74 -0
- package/test/type.attributeGroup.test.js +55 -0
- package/test/type.attributeSet.test.js +55 -0
- package/test/type.automation.test.js +886 -0
- package/test/type.dataExtension.test.js +3 -1
- package/test/type.dataExtract.test.js +187 -0
- package/test/type.fileTransfer.test.js +185 -0
- package/test/type.importFile.test.js +186 -0
- package/test/type.mobileKeyword.test.js +0 -1
- package/test/type.query.test.js +497 -33
- package/test/type.script.test.js +367 -0
- package/test/type.triggeredSend.test.js +152 -0
- package/test/type.user.test.js +37 -11
- package/test/utils.js +10 -6
- package/.coverage-comment-template.md +0 -20
- package/lib/metadataTypes/SetDefinition.js +0 -37
- /package/test/mockRoot/deploy/testInstance/testBU/query/{testExistingQuery.query-meta.sql → testExisting_query.query-meta.sql} +0 -0
- /package/test/mockRoot/deploy/testInstance/testBU/query/{testNewQuery.query-meta.sql → testNew_query.query-meta.sql} +0 -0
- /package/test/resources/1111111/accountUser/{retrieve-response.xml → retrieve-ActiveFlag=trueANDCustomerKey=testExisting_userANDEmaillike@-response.xml} +0 -0
- /package/test/resources/1111111/accountUserAccount/{retrieve-response.xml → retrieve-AccountUser.AccountUserIDIN700301950,700301951,7471228-response.xml} +0 -0
- /package/test/resources/1111111/businessUnit/{retrieve-response.xml → retrieve-ID=1111111-response.xml} +0 -0
- /package/test/resources/1111111/list/{retrieve-response.xml → retrieve-CustomerKey=All SubscribersORListName=All Subscribers-response.xml} +0 -0
- /package/test/resources/1111111/role/{retrieve-response.xml → retrieve-IsPrivate=false-response.xml} +0 -0
- /package/test/resources/9999999/queryDefinition/{retrieve-response.xml → retrieve-CustomerKey=testExisting_queryANDStatus=Active-response.xml} +0 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "Audit Trail Activity Log",
|
|
4
|
+
"extractId": "d804ddf9-feda-4495-8e7e-069a14f5d248"
|
|
5
|
+
},
|
|
6
|
+
{
|
|
7
|
+
"name": "Zip",
|
|
8
|
+
"extractId": "9a487c7d-96bd-484c-ad80-0f0bcbb91ca7"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"name": "Tracking Extract",
|
|
12
|
+
"extractId": "c7219016-a7f0-4c72-8657-1ec12c28a0db"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "Mobile Push Detail Extract Report",
|
|
16
|
+
"extractId": "e6647310-ac95-4f32-a639-2a6b145c83f1"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "UTF16 to ASCII Converter",
|
|
20
|
+
"extractId": "e7e14f95-b925-462d-b6b4-4a6b1dca7ca1"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "Contacts Without Channel Addresses",
|
|
24
|
+
"extractId": "f2500d28-b3cb-42b9-ad31-361123ec1222"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "Convert XML",
|
|
28
|
+
"extractId": "805dfb29-82cb-43dc-989b-53ef5d181920"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "GZip",
|
|
32
|
+
"extractId": "7e7d322a-88ca-499a-9fb3-90e72fcf00af"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "XmlToTextMapper",
|
|
36
|
+
"extractId": "cf2cd221-fc3c-4d9f-90b4-a4e879a51ab6"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "Enhanced FTP File Move and Copy",
|
|
40
|
+
"extractId": "90d90e0a-fd9a-4d35-b471-cde0d17c91d4"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "Data Extension Extract",
|
|
44
|
+
"extractId": "bb94a04d-9632-4623-be47-daabc3f588a6"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "Audit Trail Access Log",
|
|
48
|
+
"extractId": "382b94bd-bd1b-45e1-864f-eb824841885a"
|
|
49
|
+
}
|
|
50
|
+
]
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "72c328ac-f5b0-4e37-91d3-a775666f15a6",
|
|
3
|
+
"name": "testExisting_fileTransfer",
|
|
4
|
+
"description": "17.11.2022",
|
|
5
|
+
"customerKey": "testExisting_fileTransfer",
|
|
6
|
+
"fileSpec": "%%Year%%",
|
|
7
|
+
"isEncrypted": false,
|
|
8
|
+
"isCompressed": false,
|
|
9
|
+
"maxFileAge": 0,
|
|
10
|
+
"maxFileAgeScheduleOffset": 0,
|
|
11
|
+
"maxImportFrequency": 0,
|
|
12
|
+
"fileTransferLocationId": "41a5ded7-0d98-4910-a15f-d09e7ab0af24",
|
|
13
|
+
"isUpload": true,
|
|
14
|
+
"isPgp": false,
|
|
15
|
+
"isFileSpecLocalized": false,
|
|
16
|
+
"createdDate": "2022-11-09T05:31:56.477",
|
|
17
|
+
"modifiedDate": "2022-11-17T07:13:20.05"
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "72c328ac-f5b0-4e37-91d3-a775666f15a6",
|
|
3
|
+
"name": "testExisting_fileTransfer",
|
|
4
|
+
"description": "17.11.2022",
|
|
5
|
+
"customerKey": "testExisting_fileTransfer",
|
|
6
|
+
"fileSpec": "%%Year%% updated via deploy",
|
|
7
|
+
"isEncrypted": false,
|
|
8
|
+
"isCompressed": false,
|
|
9
|
+
"maxFileAge": 0,
|
|
10
|
+
"maxFileAgeScheduleOffset": 0,
|
|
11
|
+
"maxImportFrequency": 0,
|
|
12
|
+
"fileTransferLocationId": "41a5ded7-0d98-4910-a15f-d09e7ab0af24",
|
|
13
|
+
"isUpload": true,
|
|
14
|
+
"isPgp": false,
|
|
15
|
+
"isFileSpecLocalized": false,
|
|
16
|
+
"createdDate": "2022-11-09T05:31:56.477",
|
|
17
|
+
"modifiedDate": "2022-11-17T07:13:20.05"
|
|
18
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"page": 1,
|
|
3
|
+
"pageSize": 500,
|
|
4
|
+
"count": 1,
|
|
5
|
+
"items": [
|
|
6
|
+
{
|
|
7
|
+
"id": "72c328ac-f5b0-4e37-91d3-a775666f15a6",
|
|
8
|
+
"name": "testExisting_fileTransfer",
|
|
9
|
+
"description": "17.11.2022",
|
|
10
|
+
"customerKey": "testExisting_fileTransfer",
|
|
11
|
+
"createdDate": "2022-11-09T05:31:56.477",
|
|
12
|
+
"modifiedDate": "2022-11-17T07:13:20.05"
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "72c328ac-f5b0-4e37-91d3-a775666f15a6",
|
|
3
|
+
"name": "testNew_fileTransfer",
|
|
4
|
+
"description": "17.11.2022",
|
|
5
|
+
"customerKey": "testNew_fileTransfer",
|
|
6
|
+
"fileSpec": "%%Year%% created on deploy",
|
|
7
|
+
"isEncrypted": false,
|
|
8
|
+
"isCompressed": false,
|
|
9
|
+
"maxFileAge": 0,
|
|
10
|
+
"maxFileAgeScheduleOffset": 0,
|
|
11
|
+
"maxImportFrequency": 0,
|
|
12
|
+
"fileTransferLocationId": "41a5ded7-0d98-4910-a15f-d09e7ab0af24",
|
|
13
|
+
"isUpload": true,
|
|
14
|
+
"isPgp": false,
|
|
15
|
+
"isFileSpecLocalized": false,
|
|
16
|
+
"createdDate": "2022-11-09T05:31:56.477",
|
|
17
|
+
"modifiedDate": "2022-11-17T07:13:20.05"
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"page": 1,
|
|
3
|
+
"pageSize": 2,
|
|
4
|
+
"count": 2,
|
|
5
|
+
"items": [
|
|
6
|
+
{
|
|
7
|
+
"name": "Salesforce Objects & Reports",
|
|
8
|
+
"id": "a4a0aff9-ddc5-4608-b0e1-40d0a5133d8f",
|
|
9
|
+
"locationTypeId": 4
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "ExactTarget Enhanced FTP",
|
|
13
|
+
"id": "41a5ded7-0d98-4910-a15f-d09e7ab0af24",
|
|
14
|
+
"locationTypeId": 0,
|
|
15
|
+
"relPath": "ExactTarget Enhanced FTP"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"allowErrors": true,
|
|
3
|
+
"customerKey": "testExisting_importFile",
|
|
4
|
+
"dateFormatLocale": "en-US",
|
|
5
|
+
"deleteFile": false,
|
|
6
|
+
"description": "updated on deploy",
|
|
7
|
+
"fieldMappingType": "InferFromColumnHeadings",
|
|
8
|
+
"fieldMappings": [],
|
|
9
|
+
"fileNamingPattern": "blabla",
|
|
10
|
+
"fileTransferLocationTypeId": 0,
|
|
11
|
+
"fileType": "CSV",
|
|
12
|
+
"filter": "",
|
|
13
|
+
"hasColumnHeader": true,
|
|
14
|
+
"isOrderedImport": true,
|
|
15
|
+
"isSequential": true,
|
|
16
|
+
"maxFileAgeHours": 0,
|
|
17
|
+
"maxFileAgeScheduleOffsetHours": 0,
|
|
18
|
+
"maxImportFrequencyHours": 0,
|
|
19
|
+
"name": "testExisting_importFile",
|
|
20
|
+
"sendEmailNotification": false,
|
|
21
|
+
"standardQuotedStrings": true,
|
|
22
|
+
"fileTransferLocationId": "41a5ded7-0d98-4910-a15f-d09e7ab0af24",
|
|
23
|
+
"destinationObjectId": "21711373-72c1-ec11-b83b-48df37d1deb7",
|
|
24
|
+
"destinationObjectTypeId": 310,
|
|
25
|
+
"subscriberImportTypeId": 255,
|
|
26
|
+
"updateTypeId": 0,
|
|
27
|
+
"importDefinitionId": "9d16f42c-2260-ed11-b849-48df37d1de8b",
|
|
28
|
+
"createdDate": "2022-11-09T05:53:03.243",
|
|
29
|
+
"destinationId": 0,
|
|
30
|
+
"modifiedDate": "2023-07-18T09:11:26.19"
|
|
31
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"page": 1,
|
|
3
|
+
"pageSize": 500,
|
|
4
|
+
"count": 1,
|
|
5
|
+
"items": [
|
|
6
|
+
{
|
|
7
|
+
"allowErrors": true,
|
|
8
|
+
"customerKey": "testExisting_importFile",
|
|
9
|
+
"createdDate": "2022-11-09T05:32:30.533",
|
|
10
|
+
"modifiedDate": "2022-11-17T07:13:03.95",
|
|
11
|
+
"dateFormatLocale": "en-US",
|
|
12
|
+
"deleteFile": false,
|
|
13
|
+
"description": "17.11.2022",
|
|
14
|
+
"destinationObjectId": "21711373-72c1-ec11-b83b-48df37d1deb7",
|
|
15
|
+
"destinationId": 0,
|
|
16
|
+
"destinationObjectTypeId": 310,
|
|
17
|
+
"fieldMappings": [],
|
|
18
|
+
"fieldMappingType": "InferFromColumnHeadings",
|
|
19
|
+
"fileNamingPattern": "blabla",
|
|
20
|
+
"fileTransferLocationId": "41a5ded7-0d98-4910-a15f-d09e7ab0af24",
|
|
21
|
+
"fileType": "CSV",
|
|
22
|
+
"filter": "",
|
|
23
|
+
"hasColumnHeader": true,
|
|
24
|
+
"importDefinitionId": "9d16f42c-2260-ed11-b849-48df37d1de8b",
|
|
25
|
+
"isOrderedImport": true,
|
|
26
|
+
"isSequential": true,
|
|
27
|
+
"maxFileAgeHours": 0,
|
|
28
|
+
"maxImportFrequencyHours": 0,
|
|
29
|
+
"maxFileAgeScheduleOffsetHours": 0,
|
|
30
|
+
"name": "testExisting_importFile",
|
|
31
|
+
"sendEmailNotification": false,
|
|
32
|
+
"standardQuotedStrings": true,
|
|
33
|
+
"subscriberImportTypeId": 255,
|
|
34
|
+
"updateTypeId": 0,
|
|
35
|
+
"fileTransferLocationTypeId": 0
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"allowErrors": true,
|
|
3
|
+
"customerKey": "testNew_importFile",
|
|
4
|
+
"dateFormatLocale": "en-US",
|
|
5
|
+
"deleteFile": false,
|
|
6
|
+
"description": "created via deploy",
|
|
7
|
+
"fieldMappingType": "InferFromColumnHeadings",
|
|
8
|
+
"fieldMappings": [],
|
|
9
|
+
"fileNamingPattern": "blabla",
|
|
10
|
+
"fileTransferLocationTypeId": 0,
|
|
11
|
+
"fileType": "CSV",
|
|
12
|
+
"filter": "",
|
|
13
|
+
"hasColumnHeader": true,
|
|
14
|
+
"isOrderedImport": true,
|
|
15
|
+
"isSequential": true,
|
|
16
|
+
"maxFileAgeHours": 0,
|
|
17
|
+
"maxFileAgeScheduleOffsetHours": 0,
|
|
18
|
+
"maxImportFrequencyHours": 0,
|
|
19
|
+
"name": "testNew_importFile",
|
|
20
|
+
"sendEmailNotification": false,
|
|
21
|
+
"standardQuotedStrings": true,
|
|
22
|
+
"fileTransferLocationId": "41a5ded7-0d98-4910-a15f-d09e7ab0af24",
|
|
23
|
+
"destinationObjectId": "21711373-72c1-ec11-b83b-48df37d1deb7",
|
|
24
|
+
"destinationObjectTypeId": 310,
|
|
25
|
+
"subscriberImportTypeId": 255,
|
|
26
|
+
"updateTypeId": 0,
|
|
27
|
+
"createdDate": "2022-11-09T05:53:03.243",
|
|
28
|
+
"destinationId": 0,
|
|
29
|
+
"modifiedDate": "2023-07-18T09:11:26.19"
|
|
30
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
OK
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
OK
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"queryDefinitionId": "549f0568-607c-4940-afef-437965094dat",
|
|
3
|
-
"name": "
|
|
4
|
-
"key": "
|
|
3
|
+
"name": "testExisting_query",
|
|
4
|
+
"key": "testExisting_query",
|
|
5
5
|
"description": "bla bla",
|
|
6
6
|
"queryText": "SELECT\n SubscriberKey as testField\nFROM\n _Subscribers\nWHERE\n country IN ('test')\n",
|
|
7
7
|
"targetName": "testExisting_dataExtension",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"queryDefinitionId": "549f0568-607c-4940-afef-437965094dat",
|
|
3
|
-
"name": "
|
|
4
|
-
"key": "
|
|
3
|
+
"name": "testExisting_query",
|
|
4
|
+
"key": "testExisting_query",
|
|
5
5
|
"description": "updated on deploy",
|
|
6
6
|
"queryText": "SELECT\n SubscriberKey as testField\nFROM\n _Subscribers\nWHERE\n country IN ('test')\n",
|
|
7
7
|
"targetName": "testExisting_dataExtension",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"queryDefinitionId": "549f0568-607c-4940-afef-437965094dat_fixKeys",
|
|
3
|
+
"name": "testExisting_query_fixedKeys",
|
|
4
|
+
"key": "testExisting_query_fixKeys",
|
|
5
|
+
"description": "bla bla",
|
|
6
|
+
"queryText": "SELECT\n SubscriberKey as testField\nFROM\n _Subscribers\nWHERE\n country IN ('test')\n",
|
|
7
|
+
"targetName": "testExisting_dataExtension",
|
|
8
|
+
"targetKey": "testExisting_dataExtension",
|
|
9
|
+
"targetId": "21711373-72c1-ec11-b83b-48df37d1deb7",
|
|
10
|
+
"targetDescription": "",
|
|
11
|
+
"createdDate": "2022-04-26T15:21:16.453",
|
|
12
|
+
"modifiedDate": "2022-04-26T16:02:44.01",
|
|
13
|
+
"targetUpdateTypeId": 0,
|
|
14
|
+
"targetUpdateTypeName": "Overwrite",
|
|
15
|
+
"categoryId": 999,
|
|
16
|
+
"isFrozen": false
|
|
17
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"queryDefinitionId": "549f0568-607c-4940-afef-437965094dat_fixKeys",
|
|
3
|
+
"name": "testExisting_query_fixedKeys",
|
|
4
|
+
"key": "testExisting_query_fixedKeys",
|
|
5
|
+
"description": "updated on deploy",
|
|
6
|
+
"queryText": "SELECT\n SubscriberKey as testField\nFROM\n _Subscribers\nWHERE\n country IN ('test')\n",
|
|
7
|
+
"targetName": "testExisting_dataExtension",
|
|
8
|
+
"targetKey": "testExisting_dataExtension",
|
|
9
|
+
"targetId": "21711373-72c1-ec11-b83b-48df37d1deb7",
|
|
10
|
+
"targetDescription": "",
|
|
11
|
+
"createdDate": "2022-04-26T15:21:16.453",
|
|
12
|
+
"modifiedDate": "2022-04-26T16:04:15.88",
|
|
13
|
+
"targetUpdateTypeId": 0,
|
|
14
|
+
"targetUpdateTypeName": "Overwrite",
|
|
15
|
+
"validatedQueryText": "SET NOCOUNT ON; SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;\r\n\r\nINSERT INTO C518001158.[testDataExtension] ([testField])\r\nSELECT querydef.[testField]\r\nFROM (SELECT SubscriberKey as testField FROM C518001158._Subscribers ) AS querydef \r\nSELECT @rcInsert = @@ROWCOUNT;;\r\n",
|
|
16
|
+
"categoryId": 999,
|
|
17
|
+
"isFrozen": false
|
|
18
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"count":
|
|
2
|
+
"count": 3,
|
|
3
3
|
"page": 1,
|
|
4
4
|
"pageSize": 50,
|
|
5
5
|
"items": [
|
|
6
6
|
{
|
|
7
7
|
"queryDefinitionId": "549f0568-607c-4940-afef-437965094dat",
|
|
8
|
-
"name": "
|
|
9
|
-
"key": "
|
|
8
|
+
"name": "testExisting_query",
|
|
9
|
+
"key": "testExisting_query",
|
|
10
10
|
"description": "bla bla",
|
|
11
11
|
"queryText": "SELECT\n SubscriberKey as testField\nFROM\n _Subscribers\nWHERE\n country IN ('test')\n",
|
|
12
12
|
"targetName": "testExisting_dataExtension",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"queryDefinitionId": "abcde-607c-4940-afef-437965094dat",
|
|
25
|
-
"name": "
|
|
26
|
-
"key": "
|
|
25
|
+
"name": "testExisting_query2",
|
|
26
|
+
"key": "testExisting_query2",
|
|
27
27
|
"description": "bla bla",
|
|
28
28
|
"queryText": "SELECT\n SubscriberKey as testField\nFROM\n _Subscribers\nWHERE\n country IN ('test')\n",
|
|
29
29
|
"targetName": "testExisting_dataExtension",
|
|
@@ -36,6 +36,23 @@
|
|
|
36
36
|
"targetUpdateTypeName": "Overwrite",
|
|
37
37
|
"categoryId": 999,
|
|
38
38
|
"isFrozen": false
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"queryDefinitionId": "549f0568-607c-4940-afef-437965094dat_fixKeys",
|
|
42
|
+
"name": "testExisting_query_fixedKeys",
|
|
43
|
+
"key": "testExisting_query_fixKeys",
|
|
44
|
+
"description": "bla bla",
|
|
45
|
+
"queryText": "SELECT\n SubscriberKey as testField\nFROM\n _Subscribers\nWHERE\n country IN ('test')\n",
|
|
46
|
+
"targetName": "testExisting_dataExtension",
|
|
47
|
+
"targetKey": "testExisting_dataExtension",
|
|
48
|
+
"targetId": "21711373-72c1-ec11-b83b-48df37d1deb7",
|
|
49
|
+
"targetDescription": "",
|
|
50
|
+
"createdDate": "2022-04-26T15:21:16.453",
|
|
51
|
+
"modifiedDate": "2022-04-26T16:02:44.01",
|
|
52
|
+
"targetUpdateTypeId": 0,
|
|
53
|
+
"targetUpdateTypeName": "Overwrite",
|
|
54
|
+
"categoryId": 999,
|
|
55
|
+
"isFrozen": false
|
|
39
56
|
}
|
|
40
57
|
]
|
|
41
58
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"queryDefinitionId": "549f0568-607c-4940-afef-437965094dae",
|
|
3
|
-
"name": "
|
|
4
|
-
"key": "
|
|
3
|
+
"name": "testNew_query",
|
|
4
|
+
"key": "testNew_query",
|
|
5
5
|
"description": "created on deploy",
|
|
6
6
|
"queryText": "SELECT\n SubscriberKey as testField\nFROM\n _Subscribers\n",
|
|
7
7
|
"targetName": "testExisting_dataExtension",
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ssjsActivityId": "39f6a488-20eb-4ba0-b0b9-023725b574e4",
|
|
3
|
+
"name": "testExisting_script",
|
|
4
|
+
"key": "testExisting_script",
|
|
5
|
+
"description": "updated on deploy",
|
|
6
|
+
"script": "<script runat=\"server\">\n// dummy updated\n</script>",
|
|
7
|
+
"categoryId": 304,
|
|
8
|
+
"createdDate": "2022-10-20T00:41:26.163",
|
|
9
|
+
"modifiedDate": "2022-10-20T00:41:26.163"
|
|
10
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"count": 1,
|
|
3
|
+
"page": 1,
|
|
4
|
+
"pageSize": 500,
|
|
5
|
+
"items": [
|
|
6
|
+
{
|
|
7
|
+
"ssjsActivityId": "39f6a488-20eb-4ba0-b0b9-023725b574e4",
|
|
8
|
+
"name": "testExisting_script",
|
|
9
|
+
"key": "testExisting_script",
|
|
10
|
+
"description": "",
|
|
11
|
+
"script": "<script runat=\"server\">\n//dummy\n</script>",
|
|
12
|
+
"categoryId": 304,
|
|
13
|
+
"createdDate": "2022-10-20T00:41:26.163",
|
|
14
|
+
"modifiedDate": "2022-10-20T00:41:26.163"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"ssjsActivityId": "39f6a488-20eb-4ba0-b0b9-noScriptTag",
|
|
18
|
+
"name": "testExisting_script_noScriptTag",
|
|
19
|
+
"key": "testExisting_script_noScriptTag",
|
|
20
|
+
"description": "",
|
|
21
|
+
"script": "// no script tag\n",
|
|
22
|
+
"categoryId": 304,
|
|
23
|
+
"createdDate": "2022-10-20T00:41:26.163",
|
|
24
|
+
"modifiedDate": "2022-10-20T00:41:26.163"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ssjsActivityId": "39f6a488-20eb-4ba0-b0b9-new",
|
|
3
|
+
"name": "testNew_script",
|
|
4
|
+
"key": "testNew_script",
|
|
5
|
+
"description": "created on deploy",
|
|
6
|
+
"script": "<script runat=\"server\">\n// dummy created\n</script>",
|
|
7
|
+
"categoryId": 304,
|
|
8
|
+
"createdDate": "2022-10-20T00:41:26.163",
|
|
9
|
+
"modifiedDate": "2022-10-20T00:41:26.163"
|
|
10
|
+
}
|
package/test/resources/9999999/dataExtension/retrieve-Name=testExisting_dataExtension-response.xml
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
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:c198cc12-c34c-4d1d-90b0-5b785a342efc</wsa:MessageID>
|
|
11
|
+
<wsa:RelatesTo>urn:uuid:a0506b59-1847-4405-8231-6a15e26bbcc9</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-52fe9187-6f22-4701-bd57-d0eaa4aef215">
|
|
15
|
+
<wsu:Created>2022-04-21T19:21:50Z</wsu:Created>
|
|
16
|
+
<wsu:Expires>2022-04-21T19:26:50Z</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>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-48df37d1deb7</ObjectID>
|
|
29
|
+
<CustomerKey>testExisting_dataExtension</CustomerKey>
|
|
30
|
+
<Name>testExisting_dataExtension</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>2</CategoryID>
|
|
49
|
+
</Results>
|
|
50
|
+
</RetrieveResponseMsg>
|
|
51
|
+
</soap:Body>
|
|
52
|
+
</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>8018397d-880d-4f88-940e-3b4eca098a0c</ObjectID>
|
|
27
|
+
<CustomerKey>[testExisting_dataExtension].[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_dataExtension</CustomerKey>
|
|
40
|
+
</DataExtension>
|
|
41
|
+
</Results>
|
|
42
|
+
<Results xsi:type="DataExtensionField">
|
|
43
|
+
<PartnerKey xsi:nil="true" />
|
|
44
|
+
<ObjectID>bea0e308-5d45-4181-a673-da9972a7c674</ObjectID>
|
|
45
|
+
<CustomerKey>[testExisting_dataExtension].[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_dataExtension</CustomerKey>
|
|
58
|
+
</DataExtension>
|
|
59
|
+
</Results>
|
|
60
|
+
<Results xsi:type="DataExtensionField">
|
|
61
|
+
<PartnerKey xsi:nil="true" />
|
|
62
|
+
<ObjectID>2557b461-a699-4744-950d-e80a19afc2dc</ObjectID>
|
|
63
|
+
<CustomerKey>[testExisting_dataExtension].[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_dataExtension</CustomerKey>
|
|
76
|
+
</DataExtension>
|
|
77
|
+
</Results>
|
|
78
|
+
<Results xsi:type="DataExtensionField">
|
|
79
|
+
<PartnerKey xsi:nil="true" />
|
|
80
|
+
<ObjectID>42760528-a8c5-44dd-8c1d-ff34e5daee54</ObjectID>
|
|
81
|
+
<CustomerKey>[testExisting_dataExtension].[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_dataExtension</CustomerKey>
|
|
94
|
+
</DataExtension>
|
|
95
|
+
</Results>
|
|
96
|
+
</RetrieveResponseMsg>
|
|
97
|
+
</soap:Body>
|
|
98
|
+
</soap:Envelope>
|