mcdev 5.1.0 → 5.3.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 +4 -4
- 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/PULL_REQUEST_TEMPLATE.md +2 -2
- package/.github/workflows/coverage-develop-branch.yml +0 -2
- package/.github/workflows/coverage-main-branch.yml +0 -2
- package/.github/workflows/coverage.yml +0 -2
- package/.husky/post-checkout +1 -0
- package/.husky/post-merge +1 -0
- package/.vscode/extensions.json +4 -0
- package/docs/dist/documentation.md +1034 -296
- package/lib/Deployer.js +25 -25
- package/lib/MetadataTypeDefinitions.js +2 -1
- package/lib/MetadataTypeInfo.js +2 -1
- package/lib/Retriever.js +1 -1
- package/lib/cli.js +165 -10
- package/lib/index.js +398 -95
- package/lib/metadataTypes/Asset.js +10 -11
- package/lib/metadataTypes/AttributeGroup.js +76 -2
- package/lib/metadataTypes/AttributeSet.js +367 -0
- package/lib/metadataTypes/Automation.js +483 -137
- package/lib/metadataTypes/DataExtension.js +465 -68
- package/lib/metadataTypes/DataExtensionField.js +31 -14
- package/lib/metadataTypes/Event.js +2 -3
- package/lib/metadataTypes/Folder.js +1 -1
- package/lib/metadataTypes/Journey.js +13 -7
- package/lib/metadataTypes/MetadataType.js +212 -54
- package/lib/metadataTypes/MobileKeyword.js +9 -9
- package/lib/metadataTypes/MobileMessage.js +5 -5
- package/lib/metadataTypes/Query.js +26 -10
- package/lib/metadataTypes/Script.js +3 -3
- package/lib/metadataTypes/TransactionalEmail.js +94 -17
- package/lib/metadataTypes/TransactionalMessage.js +3 -2
- package/lib/metadataTypes/TransactionalSMS.js +5 -5
- package/lib/metadataTypes/TriggeredSend.js +25 -50
- package/lib/metadataTypes/User.js +7 -4
- package/lib/metadataTypes/Verification.js +230 -0
- package/lib/metadataTypes/definitions/AttributeGroup.definition.js +119 -108
- package/lib/metadataTypes/definitions/{SetDefinition.definition.js → AttributeSet.definition.js} +123 -43
- package/lib/metadataTypes/definitions/Automation.definition.js +23 -15
- package/lib/metadataTypes/definitions/ImportFile.definition.js +36 -6
- package/lib/metadataTypes/definitions/TransactionalEmail.definition.js +19 -1
- package/lib/metadataTypes/definitions/TriggeredSend.definition.js +1 -0
- package/lib/metadataTypes/definitions/Verification.definition.js +88 -0
- package/lib/util/cache.js +9 -4
- package/lib/util/cli.js +40 -0
- package/lib/util/file.js +2 -2
- package/lib/util/init.js +84 -0
- package/lib/util/util.js +121 -13
- package/package.json +13 -13
- 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/testExisting_automation.automation-meta.json +1 -2
- package/test/mockRoot/deploy/testInstance/testBU/automation/testNew_automation.automation-meta.json +9 -6
- package/test/mockRoot/deploy/testInstance/testBU/dataExtension/testExisting_dataExtension.dataExtension-meta.json +1 -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/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/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/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/triggeredSend/testExisting_triggeredSend.triggeredSend-meta.json +29 -0
- package/test/mockRoot/deploy/testInstance/testBU/triggeredSend/testNew_triggeredSend.triggeredSend-meta.json +29 -0
- 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 +77 -12
- 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/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/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 +143 -0
- package/test/resources/9999999/automation/build-expected.json +5 -2
- package/test/resources/9999999/automation/create-expected.json +11 -8
- package/test/resources/9999999/automation/create-testNew_automation-expected.md +5 -4
- 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 +5 -2
- package/test/resources/9999999/automation/retrieve-testExisting_automation-expected.md +3 -2
- 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 +5 -2
- package/test/resources/9999999/automation/update-expected.json +1 -2
- package/test/resources/9999999/automation/update-testExisting_automation-expected.md +2 -2
- package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-1f7f8788c560/get-response.json +7 -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 +1 -1
- package/test/resources/9999999/automation/v1/automations/post-response.json +27 -19
- package/test/resources/9999999/automation/v1/dataextracts/56c5370a-f988-4f36-b0ee-0f876573f6d7/patch-response.json +38 -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/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/automation/v1/filetransfers/72c328ac-f5b0-4e37-91d3-a775666f15a6/patch-response.json +18 -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 +1 -1
- 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_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 +18 -1
- 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 +12 -2
- package/test/resources/9999999/automation/v1/scripts/post-response.json +10 -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-Name=testExisting_dataExtension-response.xml +52 -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 +133 -0
- package/test/resources/9999999/dataExtensionField/retrieve-DataExtension.CustomerKey=testNew_dataExtensionORDataExtension.CustomerKey=testExisting_dataExtension-response.xml +99 -0
- package/test/resources/9999999/dataExtensionField/retrieve-response.xml +36 -1
- 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=contextual_suppression_listORContentType=publicationORContentType=suppression_listORContentType=mysubsORContentType=list-response.xml +136 -0
- package/test/resources/9999999/dataFolder/retrieve-ContentType=ssjsactivity-response.xml +48 -0
- 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/dataFolder/retrieve-ContentType=triggered_send_journeybuilderORContentType=triggered_sendORContentType=hidden-response.xml +276 -0
- package/test/resources/9999999/dataFolder/retrieve-response.xml +23 -0
- package/test/resources/9999999/email/retrieve-response.xml +203 -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 +628 -0
- package/test/resources/9999999/hub/v1/contacts/schema/setDefinitions/get-response.json +20194 -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/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/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-response.xml +21 -3
- 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/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/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/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/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 +55 -0
- package/test/type.attributeSet.test.js +55 -0
- package/test/type.automation.test.js +650 -17
- package/test/type.dataExtension.test.js +205 -46
- package/test/type.dataExtract.test.js +194 -0
- package/test/type.fileTransfer.test.js +192 -0
- package/test/type.importFile.test.js +193 -0
- package/test/type.journey.test.js +38 -11
- package/test/type.mobileKeyword.test.js +6 -5
- package/test/type.mobileMessage.test.js +6 -4
- package/test/type.query.test.js +470 -17
- package/test/type.script.test.js +372 -0
- package/test/type.transactionalEmail.test.js +12 -11
- package/test/type.transactionalPush.test.js +2 -4
- package/test/type.transactionalSMS.test.js +2 -4
- package/test/type.triggeredSend.test.js +154 -0
- package/test/type.user.test.js +22 -10
- package/test/type.verification.test.js +173 -0
- package/test/utils.js +11 -2
- package/types/mcdev.d.js +14 -0
- package/lib/metadataTypes/SetDefinition.js +0 -37
- /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/emailSendDefinition/{retrieve-response.xml → retrieve-IsPlatformObject=falseANDDescriptionnotEqualsSFSendDefinition-response.xml} +0 -0
- /package/test/resources/9999999/queryDefinition/{retrieve-response.xml → retrieve-CustomerKey=testExisting_queryANDStatus=Active-response.xml} +0 -0
|
@@ -0,0 +1,133 @@
|
|
|
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
|
+
<Results xsi:type="DataExtensionField">
|
|
97
|
+
<PartnerKey xsi:nil="true" />
|
|
98
|
+
<ObjectID>7b7ef009-4b85-455b-9bdf-b7bef93791d7</ObjectID>
|
|
99
|
+
<CustomerKey>[testExisting_dataExtension].[numberField]</CustomerKey>
|
|
100
|
+
<Name>numberField</Name>
|
|
101
|
+
<Scale>0</Scale>
|
|
102
|
+
<DefaultValue />
|
|
103
|
+
<IsRequired>true</IsRequired>
|
|
104
|
+
<Ordinal>5</Ordinal>
|
|
105
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
106
|
+
<FieldType>Number</FieldType>
|
|
107
|
+
<DataExtension>
|
|
108
|
+
<PartnerKey xsi:nil="true" />
|
|
109
|
+
<ObjectID xsi:nil="true" />
|
|
110
|
+
<CustomerKey>testExisting_dataExtension</CustomerKey>
|
|
111
|
+
</DataExtension>
|
|
112
|
+
</Results>
|
|
113
|
+
<Results xsi:type="DataExtensionField">
|
|
114
|
+
<PartnerKey xsi:nil="true" />
|
|
115
|
+
<ObjectID>c5d553cc-2c2a-464d-953d-6901be040f20</ObjectID>
|
|
116
|
+
<CustomerKey>[testExisting_dataExtension].[decimalField]</CustomerKey>
|
|
117
|
+
<Name>decimalField</Name>
|
|
118
|
+
<Scale>3</Scale>
|
|
119
|
+
<DefaultValue />
|
|
120
|
+
<MaxLength>6</MaxLength>
|
|
121
|
+
<IsRequired>true</IsRequired>
|
|
122
|
+
<Ordinal>4</Ordinal>
|
|
123
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
124
|
+
<FieldType>Decimal</FieldType>
|
|
125
|
+
<DataExtension>
|
|
126
|
+
<PartnerKey xsi:nil="true" />
|
|
127
|
+
<ObjectID xsi:nil="true" />
|
|
128
|
+
<CustomerKey>testExisting_dataExtension</CustomerKey>
|
|
129
|
+
</DataExtension>
|
|
130
|
+
</Results>
|
|
131
|
+
</RetrieveResponseMsg>
|
|
132
|
+
</soap:Body>
|
|
133
|
+
</soap:Envelope>
|
|
@@ -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>
|
|
@@ -93,6 +93,41 @@
|
|
|
93
93
|
<CustomerKey>testExisting_dataExtension</CustomerKey>
|
|
94
94
|
</DataExtension>
|
|
95
95
|
</Results>
|
|
96
|
+
<Results xsi:type="DataExtensionField">
|
|
97
|
+
<PartnerKey xsi:nil="true" />
|
|
98
|
+
<ObjectID>7b7ef009-4b85-455b-9bdf-b7bef93791d7</ObjectID>
|
|
99
|
+
<CustomerKey>[testExisting_dataExtension].[numberField]</CustomerKey>
|
|
100
|
+
<Name>numberField</Name>
|
|
101
|
+
<Scale>0</Scale>
|
|
102
|
+
<DefaultValue />
|
|
103
|
+
<IsRequired>true</IsRequired>
|
|
104
|
+
<Ordinal>5</Ordinal>
|
|
105
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
106
|
+
<FieldType>Number</FieldType>
|
|
107
|
+
<DataExtension>
|
|
108
|
+
<PartnerKey xsi:nil="true" />
|
|
109
|
+
<ObjectID xsi:nil="true" />
|
|
110
|
+
<CustomerKey>testExisting_dataExtension</CustomerKey>
|
|
111
|
+
</DataExtension>
|
|
112
|
+
</Results>
|
|
113
|
+
<Results xsi:type="DataExtensionField">
|
|
114
|
+
<PartnerKey xsi:nil="true" />
|
|
115
|
+
<ObjectID>c5d553cc-2c2a-464d-953d-6901be040f20</ObjectID>
|
|
116
|
+
<CustomerKey>[testExisting_dataExtension].[decimalField]</CustomerKey>
|
|
117
|
+
<Name>decimalField</Name>
|
|
118
|
+
<Scale>3</Scale>
|
|
119
|
+
<DefaultValue />
|
|
120
|
+
<MaxLength>6</MaxLength>
|
|
121
|
+
<IsRequired>true</IsRequired>
|
|
122
|
+
<Ordinal>4</Ordinal>
|
|
123
|
+
<IsPrimaryKey>false</IsPrimaryKey>
|
|
124
|
+
<FieldType>Decimal</FieldType>
|
|
125
|
+
<DataExtension>
|
|
126
|
+
<PartnerKey xsi:nil="true" />
|
|
127
|
+
<ObjectID xsi:nil="true" />
|
|
128
|
+
<CustomerKey>testExisting_dataExtension</CustomerKey>
|
|
129
|
+
</DataExtension>
|
|
130
|
+
</Results>
|
|
96
131
|
</RetrieveResponseMsg>
|
|
97
132
|
</soap:Body>
|
|
98
|
-
</soap:Envelope>
|
|
133
|
+
</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,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>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>
|