mcdev 4.3.3 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.coverage-comment-template.md +20 -0
- package/.coverage-comment-template.svelte +178 -0
- package/.eslintrc.json +2 -0
- package/.fork/.prettierrc +6 -0
- package/.fork/custom-commands.json +13 -1
- package/.github/ISSUE_TEMPLATE/bug.yml +2 -0
- package/.github/workflows/code-test.yml +36 -0
- package/.github/workflows/coverage-base-update.yml +57 -0
- package/.github/workflows/coverage-develop-branch.yml +41 -0
- package/.github/workflows/coverage-main-branch.yml +41 -0
- package/.github/workflows/coverage.yml +77 -0
- package/.husky/post-checkout +1 -1
- package/.prettierrc +1 -1
- package/.vscode/extensions.json +0 -4
- package/boilerplate/config.json +1 -1
- package/boilerplate/files/.prettierrc +1 -1
- package/boilerplate/files/.vscode/extensions.json +1 -1
- package/boilerplate/files/.vscode/settings.json +1 -0
- package/boilerplate/forcedUpdates.json +8 -0
- package/docs/dist/documentation.md +1261 -433
- package/lib/Builder.js +6 -1
- package/lib/Deployer.js +34 -10
- package/lib/MetadataTypeDefinitions.js +8 -6
- package/lib/MetadataTypeInfo.js +8 -6
- package/lib/Retriever.js +4 -1
- package/lib/cli.js +54 -42
- package/lib/index.js +82 -8
- package/lib/metadataTypes/Asset.js +185 -31
- package/lib/metadataTypes/AttributeGroup.js +0 -1
- package/lib/metadataTypes/Automation.js +48 -5
- package/lib/metadataTypes/Campaign.js +20 -7
- package/lib/metadataTypes/ContentArea.js +1 -1
- package/lib/metadataTypes/DataExtension.js +221 -184
- package/lib/metadataTypes/DataExtensionField.js +12 -19
- package/lib/metadataTypes/DataExtensionTemplate.js +1 -1
- package/lib/metadataTypes/DataExtract.js +1 -1
- package/lib/metadataTypes/DataExtractType.js +1 -1
- package/lib/metadataTypes/Email.js +1 -1
- package/lib/metadataTypes/{EmailSendDefinition.js → EmailSend.js} +5 -5
- package/lib/metadataTypes/{EventDefinition.js → Event.js} +17 -35
- package/lib/metadataTypes/{FtpLocation.js → FileLocation.js} +2 -2
- package/lib/metadataTypes/FileTransfer.js +8 -7
- package/lib/metadataTypes/Filter.js +1 -1
- package/lib/metadataTypes/Folder.js +8 -3
- package/lib/metadataTypes/ImportFile.js +6 -6
- package/lib/metadataTypes/{Interaction.js → Journey.js} +311 -147
- package/lib/metadataTypes/List.js +2 -2
- package/lib/metadataTypes/MetadataType.js +318 -90
- package/lib/metadataTypes/MobileCode.js +0 -1
- package/lib/metadataTypes/MobileKeyword.js +336 -40
- package/lib/metadataTypes/MobileMessage.js +473 -0
- package/lib/metadataTypes/Query.js +114 -32
- package/lib/metadataTypes/Role.js +60 -21
- package/lib/metadataTypes/Script.js +5 -7
- package/lib/metadataTypes/SendClassification.js +40 -0
- package/lib/metadataTypes/SetDefinition.js +1 -7
- package/lib/metadataTypes/TransactionalEmail.js +2 -3
- package/lib/metadataTypes/TransactionalMessage.js +1 -2
- package/lib/metadataTypes/TransactionalSMS.js +8 -15
- package/lib/metadataTypes/{TriggeredSendDefinition.js → TriggeredSend.js} +35 -27
- package/lib/metadataTypes/User.js +1177 -0
- package/lib/metadataTypes/definitions/Asset.definition.js +2 -4
- package/lib/metadataTypes/definitions/AttributeGroup.definition.js +1 -0
- package/lib/metadataTypes/definitions/Automation.definition.js +3 -2
- package/lib/metadataTypes/definitions/Campaign.definition.js +79 -4
- package/lib/metadataTypes/definitions/ContentArea.definition.js +1 -0
- package/lib/metadataTypes/definitions/DataExtension.definition.js +2 -1
- package/lib/metadataTypes/definitions/DataExtensionField.definition.js +1 -0
- package/lib/metadataTypes/definitions/DataExtensionTemplate.definition.js +1 -0
- package/lib/metadataTypes/definitions/DataExtract.definition.js +1 -0
- package/lib/metadataTypes/definitions/DataExtractType.definition.js +1 -0
- package/lib/metadataTypes/definitions/Discovery.definition.js +1 -0
- package/lib/metadataTypes/definitions/Email.definition.js +1 -0
- package/lib/metadataTypes/definitions/{EmailSendDefinition.definition.js → EmailSend.definition.js} +4 -2
- package/lib/metadataTypes/definitions/{EventDefinition.definition.js → Event.definition.js} +2 -1
- package/lib/metadataTypes/definitions/{FtpLocation.definition.js → FileLocation.definition.js} +4 -3
- package/lib/metadataTypes/definitions/FileTransfer.definition.js +3 -2
- package/lib/metadataTypes/definitions/Filter.definition.js +1 -0
- package/lib/metadataTypes/definitions/Folder.definition.js +2 -0
- package/lib/metadataTypes/definitions/ImportFile.definition.js +4 -3
- package/lib/metadataTypes/definitions/{Interaction.definition.js → Journey.definition.js} +11 -2
- package/lib/metadataTypes/definitions/List.definition.js +1 -0
- package/lib/metadataTypes/definitions/MobileCode.definition.js +3 -1
- package/lib/metadataTypes/definitions/MobileKeyword.definition.js +27 -17
- package/lib/metadataTypes/definitions/MobileMessage.definition.js +743 -0
- package/lib/metadataTypes/definitions/Query.definition.js +3 -2
- package/lib/metadataTypes/definitions/Role.definition.js +5 -0
- package/lib/metadataTypes/definitions/Script.definition.js +1 -0
- package/lib/metadataTypes/definitions/SendClassification.definition.js +114 -0
- package/lib/metadataTypes/definitions/SetDefinition.definition.js +1 -0
- package/lib/metadataTypes/definitions/TransactionalEmail.definition.js +2 -1
- package/lib/metadataTypes/definitions/TransactionalPush.definition.js +1 -0
- package/lib/metadataTypes/definitions/TransactionalSMS.definition.js +1 -0
- package/lib/metadataTypes/definitions/{TriggeredSendDefinition.definition.js → TriggeredSend.definition.js} +5 -3
- package/lib/metadataTypes/definitions/User.definition.js +365 -0
- package/lib/retrieveChangelog.js +1 -2
- package/lib/util/auth.js +29 -9
- package/lib/util/businessUnit.js +3 -3
- package/lib/util/cli.js +55 -7
- package/lib/util/devops.js +93 -8
- package/lib/util/file.js +55 -13
- package/lib/util/init.config.js +1 -2
- package/lib/util/init.npm.js +3 -3
- package/lib/util/util.js +68 -14
- package/package.json +16 -15
- package/test/general.test.js +62 -0
- package/test/mockRoot/.mcdevrc.json +7 -5
- package/test/mockRoot/deploy/testInstance/_ParentBU_/user/testBlocked_user.user-meta.json +23 -0
- package/test/mockRoot/deploy/testInstance/_ParentBU_/user/testExisting_user.user-meta.json +31 -0
- package/test/mockRoot/deploy/testInstance/_ParentBU_/user/testNew_user.user-meta.json +27 -0
- package/test/mockRoot/deploy/testInstance/testBU/dataExtension/{childBU_dataextension_test.dataExtension-meta.json → testExisting_dataExtension.dataExtension-meta.json} +2 -2
- package/test/mockRoot/deploy/testInstance/testBU/dataExtension/{testDataExtension.dataExtension-meta.json → testNew_dataExtension.dataExtension-meta.json} +2 -2
- package/test/mockRoot/deploy/testInstance/testBU/journey/testExisting_interaction.interaction-meta.json +576 -0
- package/test/mockRoot/deploy/testInstance/testBU/mobileKeyword/testNew_keyword.mobileKeyword-meta.amp +2 -0
- package/test/mockRoot/deploy/testInstance/testBU/mobileKeyword/testNew_keyword.mobileKeyword-meta.json +10 -0
- package/test/mockRoot/deploy/testInstance/testBU/mobileKeyword/testNew_keyword_blocked.mobileKeyword-meta.amp +2 -0
- package/test/mockRoot/deploy/testInstance/testBU/mobileKeyword/testNew_keyword_blocked.mobileKeyword-meta.json +10 -0
- package/test/mockRoot/deploy/testInstance/testBU/mobileMessage/NTIzOjc4OjA.mobileMessage-meta.amp +1 -0
- package/test/mockRoot/deploy/testInstance/testBU/mobileMessage/NTIzOjc4OjA.mobileMessage-meta.json +61 -0
- package/test/mockRoot/deploy/testInstance/testBU/mobileMessage/new.mobileMessage-meta.amp +1 -0
- package/test/mockRoot/deploy/testInstance/testBU/mobileMessage/new.mobileMessage-meta.json +60 -0
- package/test/mockRoot/deploy/testInstance/testBU/query/testExistingQuery.query-meta.json +1 -1
- package/test/mockRoot/deploy/testInstance/testBU/query/testNewQuery.query-meta.json +1 -1
- package/test/mockRoot/deploy/testInstance/testBU/query/testNewQuery.query-meta.sql +1 -1
- package/test/mockRoot/deploy/testInstance/testBU/transactionalEmail/testExisting_temail.transactionalEmail-meta.json +1 -1
- package/test/mockRoot/deploy/testInstance/testBU/transactionalEmail/testNew_temail.transactionalEmail-meta.json +1 -1
- package/test/resourceFactory.js +13 -0
- package/test/resources/1111111/accountUser/configure-response.xml +70 -0
- package/test/resources/1111111/accountUser/create-response.xml +97 -0
- package/test/resources/1111111/accountUser/retrieve-response.xml +156 -0
- package/test/resources/1111111/accountUser/update-response.xml +111 -0
- package/test/resources/1111111/accountUserAccount/retrieve-response.xml +77 -0
- package/test/resources/1111111/platform/v1/setup/quickflow/data/get-response.json +455 -0
- package/test/resources/1111111/role/retrieve-response.xml +76 -0
- package/test/resources/1111111/user/build-expected.json +16 -0
- package/test/resources/1111111/user/create-expected.json +21 -0
- package/test/resources/1111111/user/retrieve-expected.json +24 -0
- package/test/resources/1111111/user/template-expected.json +16 -0
- package/test/resources/1111111/user/update-expected.json +21 -0
- package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat/delete-response.json +1 -0
- package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat/get-response.json +17 -0
- package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat/patch-response.json +3 -3
- package/test/resources/9999999/automation/v1/queries/get-response.json +21 -4
- package/test/resources/9999999/automation/v1/queries/post-response.json +4 -4
- package/test/resources/9999999/data/v1/customobjectdata/key/{childBU_dataextension_test → testExisting_dataExtension}/rowset/get-response.json +1 -1
- package/test/resources/9999999/dataExtension/build-expected.json +3 -3
- package/test/resources/9999999/dataExtension/create-expected.json +2 -2
- package/test/resources/9999999/dataExtension/create-response.xml +8 -3
- package/test/resources/9999999/dataExtension/retrieve-expected.json +3 -3
- package/test/resources/9999999/dataExtension/retrieve-response.xml +9 -4
- package/test/resources/9999999/dataExtension/template-expected.json +3 -3
- package/test/resources/9999999/dataExtension/update-expected.json +3 -3
- package/test/resources/9999999/dataExtension/update-response.xml +9 -4
- package/test/resources/9999999/dataExtensionField/retrieve-response.xml +14 -9
- package/test/resources/9999999/interaction/v1/interactions/get-response.json +312 -0
- package/test/resources/9999999/interaction/v1/interactions/key_testExisting_interaction/get-response.json +312 -0
- package/test/resources/9999999/interaction/v1/interactions/key_testExisting_interaction/put-response.json +592 -0
- package/test/resources/9999999/journey/build-expected.json +572 -0
- package/test/resources/9999999/journey/get-expected.json +576 -0
- package/test/resources/9999999/journey/put-expected.json +576 -0
- package/test/resources/9999999/journey/template-expected.json +572 -0
- package/test/resources/9999999/legacy/v1/beta/mobile/keyword/NXV4ZFMwTEFwRVczd3RaLUF5X3p5dzo4Njow/get-response.json +42 -0
- package/test/resources/9999999/legacy/v1/beta/mobile/keyword/cTVJaG5oSDJPVUNHcUh6Z3pQT2tVdzo4Njow/delete-response.json +0 -0
- package/test/resources/9999999/legacy/v1/beta/mobile/keyword/get-response.json +1 -0
- package/test/resources/9999999/legacy/v1/beta/mobile/keyword/post-response.json +3 -0
- package/test/resources/9999999/legacy/v1/beta/mobile/message/NTIzOjc4OjA/delete-response.json +0 -0
- package/test/resources/9999999/legacy/v1/beta/mobile/message/NTIzOjc4OjA/get-response.json +106 -0
- package/test/resources/9999999/legacy/v1/beta/mobile/message/NTIzOjc4OjA/post-response.json +0 -0
- package/test/resources/9999999/legacy/v1/beta/mobile/message/NTQ3Ojc4OjA/get-response.json +127 -0
- package/test/resources/9999999/legacy/v1/beta/mobile/message/get-response.json +129 -0
- package/test/resources/9999999/legacy/v1/beta/mobile/message/post-response.json +3 -0
- package/test/resources/9999999/legacy/v1/beta2/data/campaign/get-response.json +29 -0
- package/test/resources/9999999/messaging/v1/email/definitions/post-response.json +1 -1
- package/test/resources/9999999/messaging/v1/email/definitions/testExisting_temail/get-response.json +1 -1
- package/test/resources/9999999/messaging/v1/email/definitions/testExisting_temail/patch-response.json +1 -1
- package/test/resources/9999999/mobileKeyword/build-expected.amp +2 -0
- package/test/resources/9999999/mobileKeyword/build-expected.json +9 -0
- package/test/resources/9999999/mobileKeyword/get-expected.amp +2 -0
- package/test/resources/9999999/mobileKeyword/get-expected.json +15 -0
- package/test/resources/9999999/mobileKeyword/post-create-expected.amp +2 -0
- package/test/resources/9999999/mobileKeyword/post-create-expected.json +17 -0
- package/test/resources/9999999/mobileKeyword/template-expected.amp +2 -0
- package/test/resources/9999999/mobileKeyword/template-expected.json +9 -0
- package/test/resources/9999999/mobileMessage/build-expected.amp +1 -0
- package/test/resources/9999999/mobileMessage/build-expected.json +60 -0
- package/test/resources/9999999/mobileMessage/get-expected.amp +1 -0
- package/test/resources/9999999/mobileMessage/get-expected.json +61 -0
- package/test/resources/9999999/mobileMessage/post-create-expected.amp +1 -0
- package/test/resources/9999999/mobileMessage/post-create-expected.json +63 -0
- package/test/resources/9999999/mobileMessage/post-update-expected.amp +1 -0
- package/test/resources/9999999/mobileMessage/post-update-expected.json +61 -0
- package/test/resources/9999999/mobileMessage/template-expected.amp +1 -0
- package/test/resources/9999999/mobileMessage/template-expected.json +60 -0
- package/test/resources/9999999/query/build-expected.json +1 -1
- package/test/resources/9999999/query/get-expected.json +1 -1
- package/test/resources/9999999/query/get2-expected.json +11 -0
- package/test/resources/9999999/query/patch-expected.json +1 -1
- package/test/resources/9999999/query/post-expected.json +1 -1
- package/test/resources/9999999/query/template-expected.json +1 -1
- package/test/resources/9999999/queryDefinition/retrieve-response.xml +30 -0
- package/test/resources/9999999/transactionalEmail/build-expected.json +5 -5
- package/test/resources/9999999/transactionalEmail/get-expected.json +1 -1
- package/test/resources/9999999/transactionalEmail/patch-expected.json +1 -1
- package/test/resources/9999999/transactionalEmail/post-expected.json +1 -1
- package/test/resources/9999999/transactionalEmail/template-expected.json +5 -5
- package/test/resources/9999999/transactionalPush/build-expected.json +2 -2
- package/test/resources/9999999/transactionalPush/template-expected.json +2 -2
- package/test/resources/9999999/transactionalSMS/build-expected.json +3 -3
- package/test/resources/9999999/transactionalSMS/template-expected.json +3 -3
- package/test/{dataExtension.test.js → type.dataExtension.test.js} +78 -21
- package/test/{interaction.test.js → type.journey.test.js} +64 -30
- package/test/type.mobileKeyword.test.js +250 -0
- package/test/type.mobileMessage.test.js +205 -0
- package/test/{query.test.js → type.query.test.js} +102 -5
- package/test/{transactionalEmail.test.js → type.transactionalEmail.test.js} +40 -2
- package/test/{transactionalPush.test.js → type.transactionalPush.test.js} +41 -2
- package/test/{transactionalSMS.test.js → type.transactionalSMS.test.js} +73 -3
- package/test/type.user.test.js +160 -0
- package/test/utils.js +17 -5
- package/types/mcdev.d.js +48 -15
- package/.github/workflows/code-analysis.yml +0 -57
- package/lib/metadataTypes/AccountUser.js +0 -426
- package/lib/metadataTypes/definitions/AccountUser.definition.js +0 -227
- package/test/mockRoot/deploy/testInstance/testBU/interaction/testExisting_interaction.interaction-meta.json +0 -266
- package/test/resources/9999999/interaction/build-expected.json +0 -260
- package/test/resources/9999999/interaction/get-expected.json +0 -264
- package/test/resources/9999999/interaction/put-expected.json +0 -264
- package/test/resources/9999999/interaction/template-expected.json +0 -260
- package/test/resources/9999999/interaction/v1/interactions/put-response.json +0 -280
- /package/test/mockRoot/deploy/testInstance/testBU/{interaction → journey}/testNew_interaction.interaction-meta.json +0 -0
- /package/test/resources/9999999/{interaction → journey}/post-expected.json +0 -0
|
@@ -0,0 +1,77 @@
|
|
|
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:b9fbc10c-2775-48d0-b9bb-fddf1ed90616</wsa:MessageID>
|
|
11
|
+
<wsa:RelatesTo>urn:uuid:11d44cfe-e1d7-4fc2-b6ad-a2c806573859</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-d8079cba-e093-43dc-9f6c-0e7d50ec95dd">
|
|
15
|
+
<wsu:Created>2023-03-11T13:52:52Z</wsu:Created>
|
|
16
|
+
<wsu:Expires>2023-03-11T13:57: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>f4057c93-40e3-47d6-a953-06839e221d40</RequestID>
|
|
24
|
+
<Results xsi:type="AccountUserAccount">
|
|
25
|
+
<PartnerKey xsi:nil="true" />
|
|
26
|
+
<ObjectID xsi:nil="true" />
|
|
27
|
+
<AccountUser>
|
|
28
|
+
<PartnerKey xsi:nil="true" />
|
|
29
|
+
<ObjectID xsi:nil="true" />
|
|
30
|
+
<AccountUserID>717510285</AccountUserID>
|
|
31
|
+
<Delete>0</Delete>
|
|
32
|
+
</AccountUser>
|
|
33
|
+
<Account>
|
|
34
|
+
<PartnerKey xsi:nil="true" />
|
|
35
|
+
<ID>1111111</ID>
|
|
36
|
+
<ObjectID xsi:nil="true" />
|
|
37
|
+
<AccountType>None</AccountType>
|
|
38
|
+
<Subscription xsi:nil="true" />
|
|
39
|
+
</Account>
|
|
40
|
+
</Results>
|
|
41
|
+
<Results xsi:type="AccountUserAccount">
|
|
42
|
+
<PartnerKey xsi:nil="true" />
|
|
43
|
+
<ObjectID xsi:nil="true" />
|
|
44
|
+
<AccountUser>
|
|
45
|
+
<PartnerKey xsi:nil="true" />
|
|
46
|
+
<ObjectID xsi:nil="true" />
|
|
47
|
+
<AccountUserID>700301950</AccountUserID>
|
|
48
|
+
<Delete>0</Delete>
|
|
49
|
+
</AccountUser>
|
|
50
|
+
<Account>
|
|
51
|
+
<PartnerKey xsi:nil="true" />
|
|
52
|
+
<ID>1111111</ID>
|
|
53
|
+
<ObjectID xsi:nil="true" />
|
|
54
|
+
<AccountType>None</AccountType>
|
|
55
|
+
<Subscription xsi:nil="true" />
|
|
56
|
+
</Account>
|
|
57
|
+
</Results>
|
|
58
|
+
<Results xsi:type="AccountUserAccount">
|
|
59
|
+
<PartnerKey xsi:nil="true" />
|
|
60
|
+
<ObjectID xsi:nil="true" />
|
|
61
|
+
<AccountUser>
|
|
62
|
+
<PartnerKey xsi:nil="true" />
|
|
63
|
+
<ObjectID xsi:nil="true" />
|
|
64
|
+
<AccountUserID>700301950</AccountUserID>
|
|
65
|
+
<Delete>0</Delete>
|
|
66
|
+
</AccountUser>
|
|
67
|
+
<Account>
|
|
68
|
+
<PartnerKey xsi:nil="true" />
|
|
69
|
+
<ID>9999999</ID>
|
|
70
|
+
<ObjectID xsi:nil="true" />
|
|
71
|
+
<AccountType>None</AccountType>
|
|
72
|
+
<Subscription xsi:nil="true" />
|
|
73
|
+
</Account>
|
|
74
|
+
</Results>
|
|
75
|
+
</RetrieveResponseMsg>
|
|
76
|
+
</soap:Body>
|
|
77
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,455 @@
|
|
|
1
|
+
{
|
|
2
|
+
"languages": [
|
|
3
|
+
{
|
|
4
|
+
"Key": "en-US",
|
|
5
|
+
"Value": "English (United States)"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"Key": "fr-CA",
|
|
9
|
+
"Value": "French (Canada)"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"Key": "fr-FR",
|
|
13
|
+
"Value": "French (France)"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"Key": "de-DE",
|
|
17
|
+
"Value": "German (Germany)"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"Key": "it-IT",
|
|
21
|
+
"Value": "Italian (Italy)"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"Key": "ja-JP",
|
|
25
|
+
"Value": "Japanese (Japan)"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"Key": "pt-BR",
|
|
29
|
+
"Value": "Portuguese (Brazil)"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"Key": "es-419",
|
|
33
|
+
"Value": "Spanish (Latin America)"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"Key": "es-ES",
|
|
37
|
+
"Value": "Spanish (Spain)"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"roles": [
|
|
41
|
+
{
|
|
42
|
+
"roleID": "f1cfb80f-3550-e611-96fe-38eaa7142c61",
|
|
43
|
+
"roleName": "Administrator",
|
|
44
|
+
"description": "Administrator"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"roleID": "facfb80f-3550-e611-96fe-38eaa7142c61",
|
|
48
|
+
"roleName": "Analyst",
|
|
49
|
+
"description": "Analyst"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"roleID": "f4cfb80f-3550-e611-96fe-38eaa7142c61",
|
|
53
|
+
"roleName": "Content Creator",
|
|
54
|
+
"description": "Content Creator"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"roleID": "1c564845-32d5-eb11-b82a-48df37d1deb7",
|
|
58
|
+
"roleName": "Custom Connector",
|
|
59
|
+
"description": "Custom Connector"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"roleID": "f6cfb80f-3550-e611-96fe-38eaa7142c61",
|
|
63
|
+
"roleName": "Data Manager",
|
|
64
|
+
"description": "Data Manager"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"roleID": "fdcfb80f-3550-e611-96fe-38eaa7142c61",
|
|
68
|
+
"roleName": "Distributed Sending User",
|
|
69
|
+
"description": "Distributed Sending User"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"roleID": "63a50610-315c-e111-beee-8e001800001f",
|
|
73
|
+
"roleName": "Marketing Cloud Administrator",
|
|
74
|
+
"description": "Assign Marketing Cloud roles to users and manage Mobile, Social and Sites Channels, Marketing Cloud Apps and Tools."
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"roleID": "66a50610-315c-e111-beee-8e001800001f",
|
|
78
|
+
"roleName": "Marketing Cloud Channel Manager",
|
|
79
|
+
"description": "Create and execute cross-channel interactive marketing campaigns and administer Social and Mobile Channels"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"roleID": "64a50610-315c-e111-beee-8e001800001f",
|
|
83
|
+
"roleName": "Marketing Cloud Content Editor/Publisher",
|
|
84
|
+
"description": "Create and deliver messages through Mobile and Sites Channel Apps"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"roleID": "67a50610-315c-e111-beee-8e001800001f",
|
|
88
|
+
"roleName": "Marketing Cloud Security Administrator",
|
|
89
|
+
"description": "Maintain Watchdog security settings and manage user activity and alerts"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"roleID": "65a50610-315c-e111-beee-8e001800001f",
|
|
93
|
+
"roleName": "Marketing Cloud Viewer",
|
|
94
|
+
"description": "View cross-channel marketing activity and results within the Marketing Cloud"
|
|
95
|
+
}
|
|
96
|
+
],
|
|
97
|
+
"timeZones": [
|
|
98
|
+
{
|
|
99
|
+
"id": "2",
|
|
100
|
+
"description": "(GMT) Casablanca *"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"id": "3",
|
|
104
|
+
"description": "(GMT) Dublin, Edinburgh, Lisbon, London *"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"id": "4",
|
|
108
|
+
"description": "(GMT) Monrovia, Reykjavik"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"id": "5",
|
|
112
|
+
"description": "(GMT+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna *"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"id": "6",
|
|
116
|
+
"description": "(GMT+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague *"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"id": "7",
|
|
120
|
+
"description": "(GMT+01:00) Brussels, Copenhagen, Madrid, Paris *"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"id": "8",
|
|
124
|
+
"description": "(GMT+01:00) Sarajevo, Skopje, Warsaw, Zagreb *"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"id": "9",
|
|
128
|
+
"description": "(GMT+01:00) West Central Africa"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"id": "18",
|
|
132
|
+
"description": "(GMT+01:00) Windhoek *"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"id": "10",
|
|
136
|
+
"description": "(GMT+02:00) Amman *"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"id": "11",
|
|
140
|
+
"description": "(GMT+02:00) Athens, Bucharest *"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": "12",
|
|
144
|
+
"description": "(GMT+02:00) Beirut *"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"id": "13",
|
|
148
|
+
"description": "(GMT+02:00) Cairo "
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"id": "17",
|
|
152
|
+
"description": "(GMT+02:00) E. Europe *"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"id": "14",
|
|
156
|
+
"description": "(GMT+02:00) Harare, Pretoria"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"id": "15",
|
|
160
|
+
"description": "(GMT+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius *"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"id": "16",
|
|
164
|
+
"description": "(GMT+02:00) Jerusalem *"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"id": "19",
|
|
168
|
+
"description": "(GMT+03:00) Baghdad *"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"id": "20",
|
|
172
|
+
"description": "(GMT+03:00) Kuwait, Riyadh"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"id": "21",
|
|
176
|
+
"description": "(GMT+03:00) Moscow, St. Petersburg, Volgograd (RTZ 2)"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"id": "22",
|
|
180
|
+
"description": "(GMT+03:00) Nairobi"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"id": "24",
|
|
184
|
+
"description": "(GMT+03:30) Tehran *"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"id": "25",
|
|
188
|
+
"description": "(GMT+04:00) Abu Dhabi, Muscat"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"id": "26",
|
|
192
|
+
"description": "(GMT+04:00) Baku *"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"id": "27",
|
|
196
|
+
"description": "(GMT+04:00) Yerevan *"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"id": "28",
|
|
200
|
+
"description": "(GMT+04:00) Port Louis *"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"id": "23",
|
|
204
|
+
"description": "(GMT+04:00) Tbilisi"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"id": "30",
|
|
208
|
+
"description": "(GMT+04:30) Kabul"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"id": "31",
|
|
212
|
+
"description": "(GMT+05:00) Ekaterinburg (RTZ 4)"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"id": "33",
|
|
216
|
+
"description": "(GMT+05:00) Ashgabat, Tashkent"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"id": "32",
|
|
220
|
+
"description": "(GMT+05:00) Islamabad, Karachi *"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"id": "34",
|
|
224
|
+
"description": "(GMT+05:30) Chennai, Kolkata, Mumbai, New Delhi"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"id": "35",
|
|
228
|
+
"description": "(GMT+05:30) Sri Jayawardenepura"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"id": "36",
|
|
232
|
+
"description": "(GMT+05:45) Kathmandu"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"id": "38",
|
|
236
|
+
"description": "(GMT+06:00) Astana"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"id": "37",
|
|
240
|
+
"description": "(GMT+06:00) Novosibirsk (RTZ 5)"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"id": "39",
|
|
244
|
+
"description": "(GMT+06:30) Yangon (Rangoon)"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"id": "40",
|
|
248
|
+
"description": "(GMT+07:00) Bangkok, Hanoi, Jakarta"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"id": "41",
|
|
252
|
+
"description": "(GMT+07:00) Krasnoyarsk (RTZ 6)"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"id": "42",
|
|
256
|
+
"description": "(GMT+08:00) Beijing, Chongqing, Hong Kong, Urumqi"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"id": "43",
|
|
260
|
+
"description": "(GMT+08:00) Irkutsk (RTZ 7)"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"id": "44",
|
|
264
|
+
"description": "(GMT+08:00) Kuala Lumpur, Singapore"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"id": "45",
|
|
268
|
+
"description": "(GMT+08:00) Perth *"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"id": "46",
|
|
272
|
+
"description": "(GMT+08:00) Taipei"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"id": "47",
|
|
276
|
+
"description": "(GMT+09:00) Osaka, Sapporo, Tokyo"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"id": "48",
|
|
280
|
+
"description": "(GMT+09:00) Seoul"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"id": "49",
|
|
284
|
+
"description": "(GMT+09:00) Yakutsk (RTZ 8)"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"id": "50",
|
|
288
|
+
"description": "(GMT+09:30) Adelaide *"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"id": "51",
|
|
292
|
+
"description": "(GMT+09:30) Darwin"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"id": "52",
|
|
296
|
+
"description": "(GMT+10:00) Brisbane"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"id": "53",
|
|
300
|
+
"description": "(GMT+10:00) Canberra, Melbourne, Sydney *"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"id": "54",
|
|
304
|
+
"description": "(GMT+10:00) Guam, Port Moresby"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"id": "55",
|
|
308
|
+
"description": "(GMT+10:00) Hobart *"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"id": "56",
|
|
312
|
+
"description": "(GMT+10:00) Vladivostok, Magadan (RTZ 9)"
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"id": "57",
|
|
316
|
+
"description": "(GMT+11:00) Solomon Is., New Caledonia"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"id": "58",
|
|
320
|
+
"description": "(GMT+12:00) Auckland, Wellington *"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"id": "59",
|
|
324
|
+
"description": "(GMT+12:00) Fiji *"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"id": "60",
|
|
328
|
+
"description": "(GMT+13:00) Nukualofa"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"id": "91",
|
|
332
|
+
"description": "(GMT+13:00)Samoa *"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"id": "61",
|
|
336
|
+
"description": "(GMT-01:00) Azores *"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"id": "62",
|
|
340
|
+
"description": "(GMT-01:00) Cabo Verde Is."
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"id": "63",
|
|
344
|
+
"description": "(GMT-02:00) Mid-Atlantic - Old *"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"id": "64",
|
|
348
|
+
"description": "(GMT-03:00) Brasilia"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"id": "65",
|
|
352
|
+
"description": "(GMT-03:00) Buenos Aires *"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"id": "67",
|
|
356
|
+
"description": "(GMT-03:00) Greenland *"
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"id": "68",
|
|
360
|
+
"description": "(GMT-03:00) Montevideo *"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"id": "69",
|
|
364
|
+
"description": "(GMT-03:30) Newfoundland *"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"id": "70",
|
|
368
|
+
"description": "(GMT-04:00) Atlantic Time (Canada) *"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"id": "72",
|
|
372
|
+
"description": "(GMT-04:00) Cuiaba "
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"id": "66",
|
|
376
|
+
"description": "(GMT-04:00) Georgetown, La Paz, Manaus, San Juan"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"id": "73",
|
|
380
|
+
"description": "(GMT-04:00) Santiago * "
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"id": "74",
|
|
384
|
+
"description": "(GMT-04:30) Caracas"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"id": "75",
|
|
388
|
+
"description": "(GMT-05:00) Bogota, Lima, Quito, Rio Branco"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"id": "76",
|
|
392
|
+
"description": "(GMT-05:00) Eastern Time (US & Canada) *"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"id": "77",
|
|
396
|
+
"description": "(GMT-05:00) Indiana (East) *"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"id": "78",
|
|
400
|
+
"description": "(GMT-06:00) Central America"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"id": "79",
|
|
404
|
+
"description": "(GMT-06:00) Central Time (US & Canada) *"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"id": "1",
|
|
408
|
+
"description": "(GMT-06:00) Central Time (No Daylight Savings)"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"id": "80",
|
|
412
|
+
"description": "(GMT-06:00) Guadalajara, Mexico City, Monterrey *"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"id": "82",
|
|
416
|
+
"description": "(GMT-06:00) Saskatchewan"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"id": "83",
|
|
420
|
+
"description": "(GMT-07:00) Arizona"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"id": "84",
|
|
424
|
+
"description": "(GMT-07:00) Chihuahua, La Paz, Mazatlan *"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"id": "86",
|
|
428
|
+
"description": "(GMT-07:00) Mountain Time (US & Canada) *"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"id": "88",
|
|
432
|
+
"description": "(GMT-08:00) Baja California *"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"id": "87",
|
|
436
|
+
"description": "(GMT-08:00) Pacific Time (US & Canada) *"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"id": "89",
|
|
440
|
+
"description": "(GMT-09:00) Alaska *"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"id": "90",
|
|
444
|
+
"description": "(GMT-10:00) Hawaii"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"id": "92",
|
|
448
|
+
"description": "(GMT-12:00) International Date Line West"
|
|
449
|
+
}
|
|
450
|
+
],
|
|
451
|
+
"defaultUserData": {
|
|
452
|
+
"defaultTimeZone": "5",
|
|
453
|
+
"defaultLanguage": "en-GB"
|
|
454
|
+
}
|
|
455
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
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:e45d2dee-e7c7-4c09-a6fe-887dd4021950</wsa:MessageID>
|
|
11
|
+
<wsa:RelatesTo>urn:uuid:5f970206-bed2-4006-8590-e3aa52133e4c</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-c1c19a43-2495-43e6-81f4-a86863f894aa">
|
|
15
|
+
<wsu:Created>2023-03-11T13:52:51Z</wsu:Created>
|
|
16
|
+
<wsu:Expires>2023-03-11T13:57:51Z</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>e4b2d26e-c429-4856-a410-eeb2951e84e0</RequestID>
|
|
24
|
+
<Results xsi:type="Role">
|
|
25
|
+
<PartnerKey xsi:nil="true" />
|
|
26
|
+
<CreatedDate>2016-07-22T17:52:36.93</CreatedDate>
|
|
27
|
+
<ModifiedDate>2016-07-22T17:52:36.93</ModifiedDate>
|
|
28
|
+
<ObjectID>f1cfb80f-3550-e611-96fe-38eaa7142c61</ObjectID>
|
|
29
|
+
<CustomerKey>SYS_DEF_ADMIN</CustomerKey>
|
|
30
|
+
<Name>Administrator</Name>
|
|
31
|
+
<Description>Administrator</Description>
|
|
32
|
+
<IsSystemDefined>true</IsSystemDefined>
|
|
33
|
+
</Results>
|
|
34
|
+
<Results xsi:type="Role">
|
|
35
|
+
<PartnerKey xsi:nil="true" />
|
|
36
|
+
<CreatedDate>2016-07-22T17:52:36.953</CreatedDate>
|
|
37
|
+
<ModifiedDate>2016-07-22T17:52:36.953</ModifiedDate>
|
|
38
|
+
<ObjectID>f4cfb80f-3550-e611-96fe-38eaa7142c61</ObjectID>
|
|
39
|
+
<CustomerKey>SYS_DEF_CONTENT</CustomerKey>
|
|
40
|
+
<Name>Content Creator</Name>
|
|
41
|
+
<Description>Content Creator</Description>
|
|
42
|
+
<IsSystemDefined>true</IsSystemDefined>
|
|
43
|
+
</Results>
|
|
44
|
+
<Results xsi:type="Role">
|
|
45
|
+
<PartnerKey xsi:nil="true" />
|
|
46
|
+
<CreatedDate>2016-07-22T17:52:36.97</CreatedDate>
|
|
47
|
+
<ModifiedDate>2016-07-22T17:52:36.97</ModifiedDate>
|
|
48
|
+
<ObjectID>f6cfb80f-3550-e611-96fe-38eaa7142c61</ObjectID>
|
|
49
|
+
<CustomerKey>SYS_DEF_DATA</CustomerKey>
|
|
50
|
+
<Name>Data Manager</Name>
|
|
51
|
+
<Description>Data Manager</Description>
|
|
52
|
+
<IsSystemDefined>true</IsSystemDefined>
|
|
53
|
+
</Results>
|
|
54
|
+
<Results xsi:type="Role">
|
|
55
|
+
<PartnerKey xsi:nil="true" />
|
|
56
|
+
<CreatedDate>2016-07-22T17:52:36.98</CreatedDate>
|
|
57
|
+
<ModifiedDate>2016-07-22T17:52:36.98</ModifiedDate>
|
|
58
|
+
<ObjectID>facfb80f-3550-e611-96fe-38eaa7142c61</ObjectID>
|
|
59
|
+
<CustomerKey>SYS_DEF_ANALYST</CustomerKey>
|
|
60
|
+
<Name>Analyst</Name>
|
|
61
|
+
<Description>Analyst</Description>
|
|
62
|
+
<IsSystemDefined>true</IsSystemDefined>
|
|
63
|
+
</Results>
|
|
64
|
+
<Results xsi:type="Role">
|
|
65
|
+
<PartnerKey xsi:nil="true" />
|
|
66
|
+
<CreatedDate>2016-07-22T17:52:36.993</CreatedDate>
|
|
67
|
+
<ModifiedDate>2016-07-22T17:52:36.993</ModifiedDate>
|
|
68
|
+
<ObjectID>fdcfb80f-3550-e611-96fe-38eaa7142c61</ObjectID>
|
|
69
|
+
<CustomerKey>SYS_DEF_DS_USER</CustomerKey>
|
|
70
|
+
<Name>Distributed Sending User</Name>
|
|
71
|
+
<Description>Distributed Sending User</Description>
|
|
72
|
+
<IsSystemDefined>true</IsSystemDefined>
|
|
73
|
+
</Results>
|
|
74
|
+
</RetrieveResponseMsg>
|
|
75
|
+
</soap:Body>
|
|
76
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Client": {},
|
|
3
|
+
"CustomerKey": "testTemplated_user",
|
|
4
|
+
"UserID": "user_testTarget@accenture.asgr",
|
|
5
|
+
"Name": "user test",
|
|
6
|
+
"Email": "user_testTarget@accenture.com",
|
|
7
|
+
"MustChangePassword": false,
|
|
8
|
+
"ActiveFlag": true,
|
|
9
|
+
"IsAPIUser": false,
|
|
10
|
+
"NotificationEmailAddress": "user_testTarget@accenture.com",
|
|
11
|
+
"DefaultBusinessUnit": "1111111",
|
|
12
|
+
"c__AssociatedBusinessUnits": ["1111111", "1111111"],
|
|
13
|
+
"c__RoleNamesGlobal": ["Administrator", "Content Creator", "Marketing Cloud Administrator"],
|
|
14
|
+
"c__TimeZoneName": "(GMT+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna *",
|
|
15
|
+
"c__LocaleCode": "en-GB"
|
|
16
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Client": {
|
|
3
|
+
"ModifiedBy": 123456
|
|
4
|
+
},
|
|
5
|
+
"CustomerKey": "testNew_user",
|
|
6
|
+
"UserID": "testNew_user@accenture.asgr",
|
|
7
|
+
"Name": "new user",
|
|
8
|
+
"Email": "testNew_user@accenture.com",
|
|
9
|
+
"MustChangePassword": false,
|
|
10
|
+
"ActiveFlag": true,
|
|
11
|
+
"IsAPIUser": false,
|
|
12
|
+
"NotificationEmailAddress": "testNew_user@accenture.com",
|
|
13
|
+
"DefaultBusinessUnit": 1111111,
|
|
14
|
+
"c__type": "User",
|
|
15
|
+
"c__AccountUserID": 700301950,
|
|
16
|
+
"c__IsLocked_readOnly": false,
|
|
17
|
+
"c__AssociatedBusinessUnits": [1111111, 9999999],
|
|
18
|
+
"c__RoleNamesGlobal": ["Administrator", "Distributed Sending User"],
|
|
19
|
+
"c__TimeZoneName": "(GMT+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna *",
|
|
20
|
+
"c__LocaleCode": "en-GB"
|
|
21
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Client": {
|
|
3
|
+
"ModifiedBy": 123456
|
|
4
|
+
},
|
|
5
|
+
"CreatedDate": "2019-09-06T01:59:07.097",
|
|
6
|
+
"ModifiedDate": "2022-06-21T01:43:02.64",
|
|
7
|
+
"CustomerKey": "testExisting_user",
|
|
8
|
+
"UserID": "user_test@accenture.asgr",
|
|
9
|
+
"Name": "user test",
|
|
10
|
+
"Email": "user_test@accenture.com",
|
|
11
|
+
"MustChangePassword": false,
|
|
12
|
+
"ActiveFlag": true,
|
|
13
|
+
"LastSuccessfulLogin": "2023-02-23T10:14:11.443",
|
|
14
|
+
"IsAPIUser": false,
|
|
15
|
+
"NotificationEmailAddress": "user_test@accenture.com",
|
|
16
|
+
"DefaultBusinessUnit": 1111111,
|
|
17
|
+
"c__type": "User",
|
|
18
|
+
"c__AccountUserID": 700301950,
|
|
19
|
+
"c__IsLocked_readOnly": false,
|
|
20
|
+
"c__AssociatedBusinessUnits": [1111111, 9999999],
|
|
21
|
+
"c__RoleNamesGlobal": ["Administrator", "Content Creator", "Marketing Cloud Administrator"],
|
|
22
|
+
"c__TimeZoneName": "(GMT+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna *",
|
|
23
|
+
"c__LocaleCode": "en-GB"
|
|
24
|
+
}
|