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,99 @@
|
|
|
1
|
+
<!-- used by deploy to get existing fields for existing and new dataExtension -->
|
|
2
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
3
|
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
|
4
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
5
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
6
|
+
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
|
|
7
|
+
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
|
|
8
|
+
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
|
9
|
+
<soap:Header>
|
|
10
|
+
<wsa:Action>RetrieveResponse</wsa:Action>
|
|
11
|
+
<wsa:MessageID>urn:uuid:6d2f81c8-80ab-44d5-8664-206753e7ac8d</wsa:MessageID>
|
|
12
|
+
<wsa:RelatesTo>urn:uuid:a7354389-079e-4844-93b5-af6b7bf1d535</wsa:RelatesTo>
|
|
13
|
+
<wsa:To>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:To>
|
|
14
|
+
<wsse:Security>
|
|
15
|
+
<wsu:Timestamp wsu:Id="Timestamp-468a08b7-c8fd-44bf-a2c8-fd6063127ca6">
|
|
16
|
+
<wsu:Created>2022-04-21T19:21:52Z</wsu:Created>
|
|
17
|
+
<wsu:Expires>2022-04-21T19:26:52Z</wsu:Expires>
|
|
18
|
+
</wsu:Timestamp>
|
|
19
|
+
</wsse:Security>
|
|
20
|
+
</soap:Header>
|
|
21
|
+
<soap:Body>
|
|
22
|
+
<RetrieveResponseMsg xmlns="http://exacttarget.com/wsdl/partnerAPI">
|
|
23
|
+
<OverallStatus>OK</OverallStatus>
|
|
24
|
+
<RequestID>cfe51e71-6a2b-4cb4-aecd-3777076d63bc</RequestID>
|
|
25
|
+
<Results xsi:type="DataExtensionField">
|
|
26
|
+
<PartnerKey xsi:nil="true" />
|
|
27
|
+
<ObjectID>8018397d-880d-4f88-940e-3b4eca098a0c</ObjectID>
|
|
28
|
+
<CustomerKey>[testExisting_dataExtension].[ContactKey]</CustomerKey>
|
|
29
|
+
<Name>ContactKey</Name>
|
|
30
|
+
<Scale>0</Scale>
|
|
31
|
+
<DefaultValue />
|
|
32
|
+
<MaxLength>50</MaxLength>
|
|
33
|
+
<IsRequired>true</IsRequired>
|
|
34
|
+
<Ordinal>3</Ordinal>
|
|
35
|
+
<IsPrimaryKey>true</IsPrimaryKey>
|
|
36
|
+
<FieldType>Text</FieldType>
|
|
37
|
+
<DataExtension>
|
|
38
|
+
<PartnerKey xsi:nil="true" />
|
|
39
|
+
<ObjectID xsi:nil="true" />
|
|
40
|
+
<CustomerKey>testExisting_dataExtension</CustomerKey>
|
|
41
|
+
</DataExtension>
|
|
42
|
+
</Results>
|
|
43
|
+
<Results xsi:type="DataExtensionField">
|
|
44
|
+
<PartnerKey xsi:nil="true" />
|
|
45
|
+
<ObjectID>bea0e308-5d45-4181-a673-da9972a7c674</ObjectID>
|
|
46
|
+
<CustomerKey>[testExisting_dataExtension].[LastName]</CustomerKey>
|
|
47
|
+
<Name>LastName</Name>
|
|
48
|
+
<Scale>0</Scale>
|
|
49
|
+
<DefaultValue />
|
|
50
|
+
<MaxLength>50</MaxLength>
|
|
51
|
+
<IsRequired>false</IsRequired>
|
|
52
|
+
<Ordinal>1</Ordinal>
|
|
53
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
54
|
+
<FieldType>Text</FieldType>
|
|
55
|
+
<DataExtension>
|
|
56
|
+
<PartnerKey xsi:nil="true" />
|
|
57
|
+
<ObjectID xsi:nil="true" />
|
|
58
|
+
<CustomerKey>testExisting_dataExtension</CustomerKey>
|
|
59
|
+
</DataExtension>
|
|
60
|
+
</Results>
|
|
61
|
+
<Results xsi:type="DataExtensionField">
|
|
62
|
+
<PartnerKey xsi:nil="true" />
|
|
63
|
+
<ObjectID>2557b461-a699-4744-950d-e80a19afc2dc</ObjectID>
|
|
64
|
+
<CustomerKey>[testExisting_dataExtension].[EmailAddress]</CustomerKey>
|
|
65
|
+
<Name>EmailAddress</Name>
|
|
66
|
+
<Scale>0</Scale>
|
|
67
|
+
<DefaultValue />
|
|
68
|
+
<MaxLength>254</MaxLength>
|
|
69
|
+
<IsRequired>true</IsRequired>
|
|
70
|
+
<Ordinal>2</Ordinal>
|
|
71
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
72
|
+
<FieldType>EmailAddress</FieldType>
|
|
73
|
+
<DataExtension>
|
|
74
|
+
<PartnerKey xsi:nil="true" />
|
|
75
|
+
<ObjectID xsi:nil="true" />
|
|
76
|
+
<CustomerKey>testExisting_dataExtension</CustomerKey>
|
|
77
|
+
</DataExtension>
|
|
78
|
+
</Results>
|
|
79
|
+
<Results xsi:type="DataExtensionField">
|
|
80
|
+
<PartnerKey xsi:nil="true" />
|
|
81
|
+
<ObjectID>42760528-a8c5-44dd-8c1d-ff34e5daee54</ObjectID>
|
|
82
|
+
<CustomerKey>[testExisting_dataExtension].[FirstName]</CustomerKey>
|
|
83
|
+
<Name>FirstName</Name>
|
|
84
|
+
<Scale>0</Scale>
|
|
85
|
+
<DefaultValue />
|
|
86
|
+
<MaxLength>50</MaxLength>
|
|
87
|
+
<IsRequired>false</IsRequired>
|
|
88
|
+
<Ordinal>0</Ordinal>
|
|
89
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
90
|
+
<FieldType>Text</FieldType>
|
|
91
|
+
<DataExtension>
|
|
92
|
+
<PartnerKey xsi:nil="true" />
|
|
93
|
+
<ObjectID xsi:nil="true" />
|
|
94
|
+
<CustomerKey>testExisting_dataExtension</CustomerKey>
|
|
95
|
+
</DataExtension>
|
|
96
|
+
</Results>
|
|
97
|
+
</RetrieveResponseMsg>
|
|
98
|
+
</soap:Body>
|
|
99
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dataFields": [
|
|
3
|
+
{
|
|
4
|
+
"name": "ColumnDelimiter",
|
|
5
|
+
"type": "string",
|
|
6
|
+
"value": ","
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"name": "DECustomerKey",
|
|
10
|
+
"type": "string",
|
|
11
|
+
"value": "testTemplated_dataExtension"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"name": "HasColumnHeaders",
|
|
15
|
+
"type": "bool",
|
|
16
|
+
"value": "False"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "TextQualified",
|
|
20
|
+
"type": "bool",
|
|
21
|
+
"value": "False"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "UsesLineFeed",
|
|
25
|
+
"type": "bool",
|
|
26
|
+
"value": "False"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"description": "blabla",
|
|
30
|
+
"fileSpec": "testExisting-%%Year%%-%%Month%%-%%Day%%",
|
|
31
|
+
"intervalType": 0,
|
|
32
|
+
"key": "testTemplated_dataExtract",
|
|
33
|
+
"name": "testTemplated_dataExtract",
|
|
34
|
+
"r__dataExtractType_name": "Data Extension Extract"
|
|
35
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"createdBy": 700301950,
|
|
3
|
+
"createdDate": "2022-11-09T05:31:21.667",
|
|
4
|
+
"dataFields": [
|
|
5
|
+
{
|
|
6
|
+
"name": "ColumnDelimiter",
|
|
7
|
+
"type": "string",
|
|
8
|
+
"value": ","
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"name": "DECustomerKey",
|
|
12
|
+
"type": "string",
|
|
13
|
+
"value": "testExisting_dataExtension"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"name": "HasColumnHeaders",
|
|
17
|
+
"type": "bool",
|
|
18
|
+
"value": "False"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "TextQualified",
|
|
22
|
+
"type": "bool",
|
|
23
|
+
"value": "False"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "UsesLineFeed",
|
|
27
|
+
"type": "bool",
|
|
28
|
+
"value": "False"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"description": "blabla",
|
|
32
|
+
"fileSpec": "testExisting-%%Year%%-%%Month%%-%%Day%%",
|
|
33
|
+
"intervalType": 0,
|
|
34
|
+
"key": "testExisting_dataExtract",
|
|
35
|
+
"modifiedBy": 700301950,
|
|
36
|
+
"modifiedDate": "2022-11-17T07:13:36.9",
|
|
37
|
+
"name": "testExisting_dataExtract",
|
|
38
|
+
"r__dataExtractType_name": "Data Extension Extract"
|
|
39
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"createdBy": 700304523,
|
|
3
|
+
"dataFields": [
|
|
4
|
+
{
|
|
5
|
+
"name": "ColumnDelimiter",
|
|
6
|
+
"type": "string",
|
|
7
|
+
"value": ","
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"name": "DECustomerKey",
|
|
11
|
+
"type": "string",
|
|
12
|
+
"value": "testExisting_dataExtension"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "HasColumnHeaders",
|
|
16
|
+
"type": "bool",
|
|
17
|
+
"value": "False"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "TextQualified",
|
|
21
|
+
"type": "bool",
|
|
22
|
+
"value": "False"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "UsesLineFeed",
|
|
26
|
+
"type": "bool",
|
|
27
|
+
"value": "False"
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"description": "created via deploy",
|
|
31
|
+
"fileSpec": "testExisting-%%Year%%-%%Month%%-%%Day%%",
|
|
32
|
+
"intervalType": 0,
|
|
33
|
+
"key": "testExisting_dataExtract",
|
|
34
|
+
"modifiedBy": 700304523,
|
|
35
|
+
"name": "testExisting_dataExtract",
|
|
36
|
+
"r__dataExtractType_name": "Data Extension Extract"
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"createdBy": 700304523,
|
|
3
|
+
"dataFields": [
|
|
4
|
+
{
|
|
5
|
+
"name": "ColumnDelimiter",
|
|
6
|
+
"type": "string",
|
|
7
|
+
"value": ","
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"name": "DECustomerKey",
|
|
11
|
+
"type": "string",
|
|
12
|
+
"value": "testExisting_dataExtension"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "HasColumnHeaders",
|
|
16
|
+
"type": "bool",
|
|
17
|
+
"value": "False"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "TextQualified",
|
|
21
|
+
"type": "bool",
|
|
22
|
+
"value": "False"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "UsesLineFeed",
|
|
26
|
+
"type": "bool",
|
|
27
|
+
"value": "False"
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"description": "blabla",
|
|
31
|
+
"fileSpec": "testNew-%%Year%%-%%Month%%-%%Day%%",
|
|
32
|
+
"intervalType": 0,
|
|
33
|
+
"key": "testNew_dataExtract",
|
|
34
|
+
"modifiedBy": 700304523,
|
|
35
|
+
"name": "testNew_dataExtract",
|
|
36
|
+
"r__dataExtractType_name": "Data Extension Extract"
|
|
37
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dataFields": [
|
|
3
|
+
{
|
|
4
|
+
"name": "ColumnDelimiter",
|
|
5
|
+
"type": "string",
|
|
6
|
+
"value": ","
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"name": "DECustomerKey",
|
|
10
|
+
"type": "string",
|
|
11
|
+
"value": "{{{prefix}}}dataExtension"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"name": "HasColumnHeaders",
|
|
15
|
+
"type": "bool",
|
|
16
|
+
"value": "False"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "TextQualified",
|
|
20
|
+
"type": "bool",
|
|
21
|
+
"value": "False"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "UsesLineFeed",
|
|
25
|
+
"type": "bool",
|
|
26
|
+
"value": "False"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"description": "blabla",
|
|
30
|
+
"fileSpec": "testExisting-%%Year%%-%%Month%%-%%Day%%",
|
|
31
|
+
"intervalType": 0,
|
|
32
|
+
"key": "{{{prefix}}}dataExtract",
|
|
33
|
+
"name": "{{{prefix}}}dataExtract",
|
|
34
|
+
"r__dataExtractType_name": "Data Extension Extract"
|
|
35
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
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:f36f3303-3b5a-4641-8109-b26447634d91</wsa:MessageID>
|
|
11
|
+
<wsa:RelatesTo>urn:uuid:33983968-28c4-4379-bb5f-f80ae32eb988</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-32ecc81b-6020-473c-9e99-4b5338921220">
|
|
15
|
+
<wsu:Created>2022-04-19T20:03:41Z</wsu:Created>
|
|
16
|
+
<wsu:Expires>2022-04-19T20:08:41Z</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>02cd5ccb-8f84-4651-826f-71169eeecf05</RequestID>
|
|
24
|
+
<Results xsi:type="DataFolder">
|
|
25
|
+
<Client>
|
|
26
|
+
<ID>9999999</ID>
|
|
27
|
+
</Client>
|
|
28
|
+
<PartnerKey xsi:nil="true" />
|
|
29
|
+
<CreatedDate>2019-10-25T05:35:17.337</CreatedDate>
|
|
30
|
+
<ModifiedDate>2019-10-25T05:35:17.337</ModifiedDate>
|
|
31
|
+
<ID>290937</ID>
|
|
32
|
+
<ObjectID xsi:nil="true" />
|
|
33
|
+
<CustomerKey />
|
|
34
|
+
<ParentFolder>
|
|
35
|
+
<PartnerKey xsi:nil="true" />
|
|
36
|
+
<ID>0</ID>
|
|
37
|
+
<ObjectID xsi:nil="true" />
|
|
38
|
+
</ParentFolder>
|
|
39
|
+
<Name>my automations</Name>
|
|
40
|
+
<Description />
|
|
41
|
+
<ContentType>automations</ContentType>
|
|
42
|
+
<IsActive>true</IsActive>
|
|
43
|
+
<IsEditable>true</IsEditable>
|
|
44
|
+
<AllowChildren>true</AllowChildren>
|
|
45
|
+
</Results>
|
|
46
|
+
</RetrieveResponseMsg>
|
|
47
|
+
</soap:Body>
|
|
48
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,136 @@
|
|
|
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:016c1c21-3227-4e9c-9497-33b0c15d971b</wsa:MessageID>
|
|
11
|
+
<wsa:RelatesTo>urn:uuid:f559d162-26ae-4a2c-8bfe-0abaa0be36aa</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-9215e989-d752-4c92-914c-5d254c377f41">
|
|
15
|
+
<wsu:Created>2023-08-08T12:49:25Z</wsu:Created>
|
|
16
|
+
<wsu:Expires>2023-08-08T12:54:25Z</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>01c5259b-174e-4c70-9fa7-f5cd984b28c6</RequestID>
|
|
24
|
+
<Results xsi:type="DataFolder">
|
|
25
|
+
<Client>
|
|
26
|
+
<ID>9999999</ID>
|
|
27
|
+
</Client>
|
|
28
|
+
<PartnerKey xsi:nil="true" />
|
|
29
|
+
<CreatedDate>2017-02-16T01:59:27.177</CreatedDate>
|
|
30
|
+
<ModifiedDate>2017-02-16T01:59:27.177</ModifiedDate>
|
|
31
|
+
<ID>404</ID>
|
|
32
|
+
<ObjectID xsi:nil="true" />
|
|
33
|
+
<CustomerKey>list_default</CustomerKey>
|
|
34
|
+
<ParentFolder>
|
|
35
|
+
<PartnerKey xsi:nil="true" />
|
|
36
|
+
<ID>0</ID>
|
|
37
|
+
<ObjectID xsi:nil="true" />
|
|
38
|
+
</ParentFolder>
|
|
39
|
+
<Name>my lists</Name>
|
|
40
|
+
<Description />
|
|
41
|
+
<ContentType>list</ContentType>
|
|
42
|
+
<IsActive>true</IsActive>
|
|
43
|
+
<IsEditable>false</IsEditable>
|
|
44
|
+
<AllowChildren>true</AllowChildren>
|
|
45
|
+
</Results>
|
|
46
|
+
<Results xsi:type="DataFolder">
|
|
47
|
+
<Client>
|
|
48
|
+
<ID>9999999</ID>
|
|
49
|
+
</Client>
|
|
50
|
+
<PartnerKey xsi:nil="true" />
|
|
51
|
+
<CreatedDate>2016-07-22T11:52:17.55</CreatedDate>
|
|
52
|
+
<ModifiedDate>2016-07-22T11:52:17.55</ModifiedDate>
|
|
53
|
+
<ID>89332</ID>
|
|
54
|
+
<ObjectID xsi:nil="true" />
|
|
55
|
+
<CustomerKey>mysubs_default</CustomerKey>
|
|
56
|
+
<ParentFolder>
|
|
57
|
+
<PartnerKey xsi:nil="true" />
|
|
58
|
+
<ID>0</ID>
|
|
59
|
+
<ObjectID xsi:nil="true" />
|
|
60
|
+
</ParentFolder>
|
|
61
|
+
<Name>my subscribers</Name>
|
|
62
|
+
<Description />
|
|
63
|
+
<ContentType>mysubs</ContentType>
|
|
64
|
+
<IsActive>true</IsActive>
|
|
65
|
+
<IsEditable>false</IsEditable>
|
|
66
|
+
<AllowChildren>true</AllowChildren>
|
|
67
|
+
</Results>
|
|
68
|
+
<Results xsi:type="DataFolder">
|
|
69
|
+
<Client>
|
|
70
|
+
<ID>9999999</ID>
|
|
71
|
+
</Client>
|
|
72
|
+
<PartnerKey xsi:nil="true" />
|
|
73
|
+
<CreatedDate>2017-02-16T01:59:32.323</CreatedDate>
|
|
74
|
+
<ModifiedDate>2017-02-16T01:59:32.323</ModifiedDate>
|
|
75
|
+
<ID>419</ID>
|
|
76
|
+
<ObjectID xsi:nil="true" />
|
|
77
|
+
<CustomerKey>suppression_list_default</CustomerKey>
|
|
78
|
+
<ParentFolder>
|
|
79
|
+
<PartnerKey xsi:nil="true" />
|
|
80
|
+
<ID>0</ID>
|
|
81
|
+
<ObjectID xsi:nil="true" />
|
|
82
|
+
</ParentFolder>
|
|
83
|
+
<Name>Suppression Lists</Name>
|
|
84
|
+
<Description />
|
|
85
|
+
<ContentType>suppression_list</ContentType>
|
|
86
|
+
<IsActive>true</IsActive>
|
|
87
|
+
<IsEditable>false</IsEditable>
|
|
88
|
+
<AllowChildren>true</AllowChildren>
|
|
89
|
+
</Results>
|
|
90
|
+
<Results xsi:type="DataFolder">
|
|
91
|
+
<Client>
|
|
92
|
+
<ID>9999999</ID>
|
|
93
|
+
</Client>
|
|
94
|
+
<PartnerKey xsi:nil="true" />
|
|
95
|
+
<CreatedDate>2017-02-16T01:59:34.023</CreatedDate>
|
|
96
|
+
<ModifiedDate>2017-02-16T01:59:34.023</ModifiedDate>
|
|
97
|
+
<ID>424</ID>
|
|
98
|
+
<ObjectID xsi:nil="true" />
|
|
99
|
+
<CustomerKey>publication_default</CustomerKey>
|
|
100
|
+
<ParentFolder>
|
|
101
|
+
<PartnerKey xsi:nil="true" />
|
|
102
|
+
<ID>0</ID>
|
|
103
|
+
<ObjectID xsi:nil="true" />
|
|
104
|
+
</ParentFolder>
|
|
105
|
+
<Name>Publication Lists</Name>
|
|
106
|
+
<Description />
|
|
107
|
+
<ContentType>publication</ContentType>
|
|
108
|
+
<IsActive>true</IsActive>
|
|
109
|
+
<IsEditable>false</IsEditable>
|
|
110
|
+
<AllowChildren>true</AllowChildren>
|
|
111
|
+
</Results>
|
|
112
|
+
<Results xsi:type="DataFolder">
|
|
113
|
+
<Client>
|
|
114
|
+
<ID>9999999</ID>
|
|
115
|
+
</Client>
|
|
116
|
+
<PartnerKey xsi:nil="true" />
|
|
117
|
+
<CreatedDate>2016-07-22T11:52:24.417</CreatedDate>
|
|
118
|
+
<ModifiedDate>2016-07-22T11:52:24.417</ModifiedDate>
|
|
119
|
+
<ID>89373</ID>
|
|
120
|
+
<ObjectID xsi:nil="true" />
|
|
121
|
+
<CustomerKey>contextual_suppression_list_default</CustomerKey>
|
|
122
|
+
<ParentFolder>
|
|
123
|
+
<PartnerKey xsi:nil="true" />
|
|
124
|
+
<ID>0</ID>
|
|
125
|
+
<ObjectID xsi:nil="true" />
|
|
126
|
+
</ParentFolder>
|
|
127
|
+
<Name>Auto-Suppression Configuration</Name>
|
|
128
|
+
<Description />
|
|
129
|
+
<ContentType>contextual_suppression_list</ContentType>
|
|
130
|
+
<IsActive>true</IsActive>
|
|
131
|
+
<IsEditable>false</IsEditable>
|
|
132
|
+
<AllowChildren>true</AllowChildren>
|
|
133
|
+
</Results>
|
|
134
|
+
</RetrieveResponseMsg>
|
|
135
|
+
</soap:Body>
|
|
136
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,48 @@
|
|
|
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:f36f3303-3b5a-4641-8109-b26447634d91</wsa:MessageID>
|
|
11
|
+
<wsa:RelatesTo>urn:uuid:33983968-28c4-4379-bb5f-f80ae32eb988</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-32ecc81b-6020-473c-9e99-4b5338921220">
|
|
15
|
+
<wsu:Created>2022-04-19T20:03:41Z</wsu:Created>
|
|
16
|
+
<wsu:Expires>2022-04-19T20:08:41Z</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>02cd5ccb-8f84-4651-826f-71169eeecf05</RequestID>
|
|
24
|
+
<Results xsi:type="DataFolder">
|
|
25
|
+
<Client>
|
|
26
|
+
<ID>9999999</ID>
|
|
27
|
+
</Client>
|
|
28
|
+
<PartnerKey xsi:nil="true" />
|
|
29
|
+
<CreatedDate>2016-07-22T11:52:20.407</CreatedDate>
|
|
30
|
+
<ModifiedDate>2016-07-22T11:52:20.407</ModifiedDate>
|
|
31
|
+
<ID>999</ID>
|
|
32
|
+
<ObjectID xsi:nil="true" />
|
|
33
|
+
<CustomerKey>queryactivity_default</CustomerKey>
|
|
34
|
+
<ParentFolder>
|
|
35
|
+
<PartnerKey xsi:nil="true" />
|
|
36
|
+
<ID>0</ID>
|
|
37
|
+
<ObjectID xsi:nil="true" />
|
|
38
|
+
</ParentFolder>
|
|
39
|
+
<Name>Query</Name>
|
|
40
|
+
<Description />
|
|
41
|
+
<ContentType>queryactivity</ContentType>
|
|
42
|
+
<IsActive>true</IsActive>
|
|
43
|
+
<IsEditable>false</IsEditable>
|
|
44
|
+
<AllowChildren>true</AllowChildren>
|
|
45
|
+
</Results>
|
|
46
|
+
</RetrieveResponseMsg>
|
|
47
|
+
</soap:Body>
|
|
48
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,48 @@
|
|
|
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:f36f3303-3b5a-4641-8109-b26447634d91</wsa:MessageID>
|
|
11
|
+
<wsa:RelatesTo>urn:uuid:33983968-28c4-4379-bb5f-f80ae32eb988</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-32ecc81b-6020-473c-9e99-4b5338921220">
|
|
15
|
+
<wsu:Created>2022-04-19T20:03:41Z</wsu:Created>
|
|
16
|
+
<wsu:Expires>2022-04-19T20:08:41Z</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>02cd5ccb-8f84-4651-826f-71169eeecf05</RequestID>
|
|
24
|
+
<Results xsi:type="DataFolder">
|
|
25
|
+
<Client>
|
|
26
|
+
<ID>9999999</ID>
|
|
27
|
+
</Client>
|
|
28
|
+
<PartnerKey xsi:nil="true" />
|
|
29
|
+
<CreatedDate>2017-01-24T06:32:42.353</CreatedDate>
|
|
30
|
+
<ModifiedDate>2017-01-24T06:32:42.353</ModifiedDate>
|
|
31
|
+
<ID>304</ID>
|
|
32
|
+
<ObjectID xsi:nil="true" />
|
|
33
|
+
<CustomerKey>SSJSActivity_default</CustomerKey>
|
|
34
|
+
<ParentFolder>
|
|
35
|
+
<PartnerKey xsi:nil="true" />
|
|
36
|
+
<ID>0</ID>
|
|
37
|
+
<ObjectID xsi:nil="true" />
|
|
38
|
+
</ParentFolder>
|
|
39
|
+
<Name>Scripts</Name>
|
|
40
|
+
<Description />
|
|
41
|
+
<ContentType>SSJSActivity</ContentType>
|
|
42
|
+
<IsActive>true</IsActive>
|
|
43
|
+
<IsEditable>false</IsEditable>
|
|
44
|
+
<AllowChildren>true</AllowChildren>
|
|
45
|
+
</Results>
|
|
46
|
+
</RetrieveResponseMsg>
|
|
47
|
+
</soap:Body>
|
|
48
|
+
</soap:Envelope>
|