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.
Files changed (237) hide show
  1. package/.coverage-comment-template.svelte +177 -161
  2. package/.eslintrc.json +4 -4
  3. package/.github/ISSUE_TEMPLATE/bug.yml +2 -0
  4. package/.github/PULL_REQUEST_TEMPLATE.md +2 -2
  5. package/.github/dependabot.yml +8 -0
  6. package/.github/workflows/coverage-base-update.yml +6 -2
  7. package/.github/workflows/coverage-develop-branch.yml +7 -8
  8. package/.github/workflows/coverage-main-branch.yml +7 -8
  9. package/.github/workflows/coverage.yml +7 -4
  10. package/.husky/post-checkout +4 -2
  11. package/.husky/post-merge +1 -0
  12. package/.vscode/extensions.json +4 -0
  13. package/docs/dist/documentation.md +756 -294
  14. package/lib/Deployer.js +28 -28
  15. package/lib/MetadataTypeDefinitions.js +1 -1
  16. package/lib/MetadataTypeInfo.js +1 -1
  17. package/lib/Retriever.js +1 -1
  18. package/lib/cli.js +184 -6
  19. package/lib/index.js +493 -22
  20. package/lib/metadataTypes/Asset.js +10 -11
  21. package/lib/metadataTypes/AttributeGroup.js +76 -2
  22. package/lib/metadataTypes/AttributeSet.js +260 -0
  23. package/lib/metadataTypes/Automation.js +771 -247
  24. package/lib/metadataTypes/DataExtension.js +7 -7
  25. package/lib/metadataTypes/DataExtensionField.js +1 -1
  26. package/lib/metadataTypes/Event.js +2 -3
  27. package/lib/metadataTypes/Folder.js +1 -1
  28. package/lib/metadataTypes/Journey.js +5 -6
  29. package/lib/metadataTypes/MetadataType.js +187 -60
  30. package/lib/metadataTypes/MobileKeyword.js +8 -8
  31. package/lib/metadataTypes/MobileMessage.js +5 -5
  32. package/lib/metadataTypes/Query.js +47 -5
  33. package/lib/metadataTypes/Script.js +3 -3
  34. package/lib/metadataTypes/TransactionalSMS.js +5 -5
  35. package/lib/metadataTypes/TriggeredSend.js +25 -50
  36. package/lib/metadataTypes/User.js +7 -4
  37. package/lib/metadataTypes/definitions/Asset.definition.js +1 -0
  38. package/lib/metadataTypes/definitions/AttributeGroup.definition.js +117 -106
  39. package/lib/metadataTypes/definitions/{SetDefinition.definition.js → AttributeSet.definition.js} +54 -27
  40. package/lib/metadataTypes/definitions/Automation.definition.js +74 -21
  41. package/lib/metadataTypes/definitions/DataExtension.definition.js +1 -0
  42. package/lib/metadataTypes/definitions/DataExtract.definition.js +1 -0
  43. package/lib/metadataTypes/definitions/EmailSend.definition.js +1 -0
  44. package/lib/metadataTypes/definitions/Event.definition.js +1 -0
  45. package/lib/metadataTypes/definitions/Filter.definition.js +1 -0
  46. package/lib/metadataTypes/definitions/ImportFile.definition.js +37 -6
  47. package/lib/metadataTypes/definitions/MobileKeyword.definition.js +1 -0
  48. package/lib/metadataTypes/definitions/Query.definition.js +1 -0
  49. package/lib/metadataTypes/definitions/Role.definition.js +1 -0
  50. package/lib/metadataTypes/definitions/TriggeredSend.definition.js +2 -0
  51. package/lib/metadataTypes/definitions/User.definition.js +1 -0
  52. package/lib/util/cache.js +9 -4
  53. package/lib/util/cli.js +40 -0
  54. package/lib/util/devops.js +13 -11
  55. package/lib/util/file.js +2 -2
  56. package/lib/util/init.js +84 -0
  57. package/lib/util/util.js +268 -137
  58. package/package.json +11 -11
  59. package/test/general.test.js +26 -0
  60. package/test/mockRoot/.mcdevrc.json +1 -1
  61. package/test/mockRoot/deploy/testInstance/testBU/automation/testExisting_automation.automation-meta.json +52 -0
  62. package/test/mockRoot/deploy/testInstance/testBU/automation/testNew_automation.automation-meta.json +45 -0
  63. package/test/mockRoot/deploy/testInstance/testBU/dataExtract/testExisting_dataExtract.dataExtract-meta.json +35 -0
  64. package/test/mockRoot/deploy/testInstance/testBU/dataExtract/testNew_dataExtract.dataExtract-meta.json +35 -0
  65. package/test/mockRoot/deploy/testInstance/testBU/fileTransfer/testExisting_fileTransfer.fileTransfer-meta.json +17 -0
  66. package/test/mockRoot/deploy/testInstance/testBU/fileTransfer/testNew_fileTransfer.fileTransfer-meta.json +17 -0
  67. package/test/mockRoot/deploy/testInstance/testBU/importFile/testExisting_importFile.importFile-meta.json +29 -0
  68. package/test/mockRoot/deploy/testInstance/testBU/importFile/testNew_importFile.importFile-meta.json +29 -0
  69. package/test/mockRoot/deploy/testInstance/testBU/query/{testExistingQuery.query-meta.json → testExisting_query.query-meta.json} +2 -2
  70. package/test/mockRoot/deploy/testInstance/testBU/query/testExisting_query_fixKeys.query-meta.json +11 -0
  71. package/test/mockRoot/deploy/testInstance/testBU/query/testExisting_query_fixKeys.query-meta.sql +6 -0
  72. package/test/mockRoot/deploy/testInstance/testBU/query/{testNewQuery.query-meta.json → testNew_query.query-meta.json} +2 -2
  73. package/test/mockRoot/deploy/testInstance/testBU/script/testExisting_script.script-meta.json +6 -0
  74. package/test/mockRoot/deploy/testInstance/testBU/script/testExisting_script.script-meta.ssjs +1 -0
  75. package/test/mockRoot/deploy/testInstance/testBU/script/testNew_script.script-meta.json +6 -0
  76. package/test/mockRoot/deploy/testInstance/testBU/script/testNew_script.script-meta.ssjs +1 -0
  77. package/test/mockRoot/deploy/testInstance/testBU/triggeredSend/testExisting_triggeredSend.triggeredSend-meta.json +29 -0
  78. package/test/mockRoot/deploy/testInstance/testBU/triggeredSend/testNew_triggeredSend.triggeredSend-meta.json +29 -0
  79. package/test/resourceFactory.js +132 -24
  80. package/test/resources/1111111/accountUser/retrieve-ActiveFlag=falseANDCustomerKey=testExisting_userANDEmaillike@-response.xml +27 -0
  81. package/test/resources/1111111/accountUser/retrieve-ActiveFlag=falseANDEmaillike@-response.xml +156 -0
  82. package/test/resources/1111111/accountUser/retrieve-ActiveFlag=trueANDEmailisNullORNamelikeapp userANDMustChangePassword=false-response.xml +87 -0
  83. package/test/resources/1111111/accountUser/retrieve-ActiveFlag=trueANDEmaillike@-response.xml +156 -0
  84. package/test/resources/1111111/accountUser/retrieve-CustomerKey=testExisting_userANDActiveFlag=trueANDEmailisNullORNamelikeapp userANDMustChangePassword=false-response.xml +27 -0
  85. package/test/resources/1111111/accountUserAccount/retrieve-AccountUser.AccountUserID=700301950-response.xml +60 -0
  86. package/test/resources/1111111/user/retrieve-expected.md +4 -2
  87. package/test/resources/9999999/attributeGroup/retrieve-expected.json +25 -0
  88. package/test/resources/9999999/attributeSet/retrieve-expected.json +748 -0
  89. package/test/resources/9999999/automation/build-expected.json +57 -0
  90. package/test/resources/9999999/automation/create-expected.json +45 -0
  91. package/test/resources/9999999/automation/create-testNew_automation-expected.md +28 -0
  92. package/test/resources/9999999/automation/delete-response.xml +40 -0
  93. package/test/resources/9999999/automation/patch_fixKeys-pause-expected.json +44 -0
  94. package/test/resources/9999999/automation/patch_fixKeys-schedule-expected.json +44 -0
  95. package/test/resources/9999999/automation/perform-08afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +42 -0
  96. package/test/resources/9999999/automation/perform-08afb0e2-b00a-4c88-fixKey_pause-response.xml +42 -0
  97. package/test/resources/9999999/automation/perform-08afb0e2-b00a-4c88-fixKey_schedule-response.xml +42 -0
  98. package/test/resources/9999999/automation/perform-a8afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +42 -0
  99. package/test/resources/9999999/automation/retrieve-expected.json +57 -0
  100. package/test/resources/9999999/automation/retrieve-testExisting_automation-expected.md +30 -0
  101. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +52 -0
  102. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-ad2e-pause-response.xml +38 -0
  103. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-fixKey_pause-response.xml +52 -0
  104. package/test/resources/9999999/automation/schedule-08afb0e2-b00a-4c88-fixKey_schedule-response.xml +52 -0
  105. package/test/resources/9999999/automation/schedule-a8afb0e2-b00a-4c88-ad2e-1f7f8788c560-response.xml +52 -0
  106. package/test/resources/9999999/automation/template-expected.json +57 -0
  107. package/test/resources/9999999/automation/update-expected.json +45 -0
  108. package/test/resources/9999999/automation/update-testExisting_automation-expected.md +28 -0
  109. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-1f7f8788c560/get-response.json +85 -0
  110. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-1f7f8788c560/patch-response.json +85 -0
  111. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-pause/get-response.json +85 -0
  112. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-ad2e-pause/patch-response.json +85 -0
  113. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_pause/get-response.json +85 -0
  114. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_pause/patch-response.json +85 -0
  115. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_schedule/get-response.json +85 -0
  116. package/test/resources/9999999/automation/v1/automations/08afb0e2-b00a-4c88-fixKey_schedule/patch-response.json +85 -0
  117. package/test/resources/9999999/automation/v1/automations/a8afb0e2-b00a-4c88-ad2e-1f7f8788c560/get-response.json +85 -0
  118. package/test/resources/9999999/automation/v1/automations/post-response.json +86 -0
  119. package/test/resources/9999999/automation/v1/dataextracts/56c5370a-f988-4f36-b0ee-0f876573f6d7/get-response.json +38 -0
  120. package/test/resources/9999999/automation/v1/dataextracts/56c5370a-f988-4f36-b0ee-0f876573f6d7/patch-response.json +38 -0
  121. package/test/resources/9999999/automation/v1/dataextracts/get-response.json +20 -0
  122. package/test/resources/9999999/automation/v1/dataextracts/post-response.json +38 -0
  123. package/test/resources/9999999/automation/v1/dataextracttypes/get-response.json +50 -0
  124. package/test/resources/9999999/automation/v1/filetransfers/72c328ac-f5b0-4e37-91d3-a775666f15a6/get-response.json +18 -0
  125. package/test/resources/9999999/automation/v1/filetransfers/72c328ac-f5b0-4e37-91d3-a775666f15a6/patch-response.json +18 -0
  126. package/test/resources/9999999/automation/v1/filetransfers/get-response.json +15 -0
  127. package/test/resources/9999999/automation/v1/filetransfers/post-response.json +18 -0
  128. package/test/resources/9999999/automation/v1/ftplocations/get-response.json +18 -0
  129. package/test/resources/9999999/automation/v1/imports/9d16f42c-2260-ed11-b849-48df37d1de8b/patch-response.json +31 -0
  130. package/test/resources/9999999/automation/v1/imports/get-response.json +38 -0
  131. package/test/resources/9999999/automation/v1/imports/post-response.json +30 -0
  132. package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dae/actions/start/post-response.txt +1 -0
  133. package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat/actions/start/post-response.txt +1 -0
  134. package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat/get-response.json +2 -2
  135. package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat/patch-response.json +2 -2
  136. package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat_fixKeys/get-response.json +17 -0
  137. package/test/resources/9999999/automation/v1/queries/549f0568-607c-4940-afef-437965094dat_fixKeys/patch-response.json +18 -0
  138. package/test/resources/9999999/automation/v1/queries/get-response.json +22 -5
  139. package/test/resources/9999999/automation/v1/queries/post-response.json +2 -2
  140. package/test/resources/9999999/automation/v1/scripts/39f6a488-20eb-4ba0-b0b9-023725b574e4/patch-response.json +10 -0
  141. package/test/resources/9999999/automation/v1/scripts/get-response.json +27 -0
  142. package/test/resources/9999999/automation/v1/scripts/post-response.json +10 -0
  143. package/test/resources/9999999/dataExtension/retrieve-Name=testExisting_dataExtension-response.xml +52 -0
  144. package/test/resources/9999999/dataExtensionField/retrieve-DataExtension.CustomerKey=testExisting_dataExtension-response.xml +98 -0
  145. package/test/resources/9999999/dataExtensionField/retrieve-DataExtension.CustomerKey=testNew_dataExtensionORDataExtension.CustomerKey=testExisting_dataExtension-response.xml +99 -0
  146. package/test/resources/9999999/dataExtract/build-expected.json +35 -0
  147. package/test/resources/9999999/dataExtract/get-expected.json +39 -0
  148. package/test/resources/9999999/dataExtract/patch-expected.json +37 -0
  149. package/test/resources/9999999/dataExtract/post-expected.json +37 -0
  150. package/test/resources/9999999/dataExtract/template-expected.json +35 -0
  151. package/test/resources/9999999/dataFolder/retrieve-ContentType=automations-response.xml +48 -0
  152. package/test/resources/9999999/dataFolder/retrieve-ContentType=contextual_suppression_listORContentType=publicationORContentType=suppression_listORContentType=mysubsORContentType=list-response.xml +136 -0
  153. package/test/resources/9999999/dataFolder/retrieve-ContentType=queryactivity-response.xml +48 -0
  154. package/test/resources/9999999/dataFolder/retrieve-ContentType=ssjsactivity-response.xml +48 -0
  155. package/test/resources/9999999/dataFolder/retrieve-ContentType=triggered_send_journeybuilderORContentType=triggered_sendORContentType=hidden-response.xml +276 -0
  156. package/test/resources/9999999/dataFolder/retrieve-response.xml +45 -0
  157. package/test/resources/9999999/email/retrieve-response.xml +203 -0
  158. package/test/resources/9999999/emailSendDefinition/retrieve-IsPlatformObject=falseANDDescriptionnotEqualsSFSendDefinition-response.xml +85 -0
  159. package/test/resources/9999999/fileTransfer/build-expected.json +15 -0
  160. package/test/resources/9999999/fileTransfer/get-expected.json +17 -0
  161. package/test/resources/9999999/fileTransfer/patch-expected.json +17 -0
  162. package/test/resources/9999999/fileTransfer/post-expected.json +17 -0
  163. package/test/resources/9999999/fileTransfer/template-expected.json +15 -0
  164. package/test/resources/9999999/hub/v1/contacts/schema/attributeGroups/get-response.json +585 -0
  165. package/test/resources/9999999/hub/v1/contacts/schema/setDefinitions/get-response.json +19807 -0
  166. package/test/resources/9999999/importFile/build-expected.json +27 -0
  167. package/test/resources/9999999/importFile/get-expected.json +29 -0
  168. package/test/resources/9999999/importFile/patch-expected.json +29 -0
  169. package/test/resources/9999999/importFile/post-expected.json +29 -0
  170. package/test/resources/9999999/importFile/template-expected.json +27 -0
  171. package/test/resources/9999999/legacy/v1/beta/automations/notifications/RkpOcE9qSVh2VUdnYTVJbWFfWW14dzoyNTow/get-response.json +21 -0
  172. package/test/resources/9999999/legacy/v1/beta/automations/notifications/RkpOcE9qSVh2VUdnYTVJbWFfWW14dzoyNTow/post-response.json +0 -0
  173. package/test/resources/9999999/legacy/v1/beta/bulk/automations/automation/definition/get-response.json +30 -0
  174. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation-response.xml +30 -0
  175. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixKey_pause-response.xml +32 -0
  176. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixKey_schedule-response.xml +32 -0
  177. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixedKey_paused-response.xml +32 -0
  178. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_fixedKey_scheduled-response.xml +32 -0
  179. package/test/resources/9999999/program/retrieve-CustomerKey=testExisting_automation_pause-response.xml +30 -0
  180. package/test/resources/9999999/program/retrieve-CustomerKey=testNew_automation-response.xml +30 -0
  181. package/test/resources/9999999/program/retrieve-Name=testExisting_automation-response.xml +31 -0
  182. package/test/resources/9999999/program/retrieve-response.xml +50 -0
  183. package/test/resources/9999999/query/build-expected.json +2 -2
  184. package/test/resources/9999999/query/get-expected.json +2 -2
  185. package/test/resources/9999999/query/get2-expected.json +2 -2
  186. package/test/resources/9999999/query/patch-expected.json +2 -2
  187. package/test/resources/9999999/query/patch_fixKeys-expected.json +11 -0
  188. package/test/resources/9999999/query/patch_fixKeys-expected.sql +6 -0
  189. package/test/resources/9999999/query/post-expected.json +2 -2
  190. package/test/resources/9999999/query/template-expected.json +2 -2
  191. package/test/resources/9999999/queryDefinition/retrieve-CustomerKey=testExisting_query_fixKeysANDStatus=Active-response.xml +30 -0
  192. package/test/resources/9999999/queryDefinition/retrieve-CustomerKey=testExisting_query_fixedKeysANDStatus=Active-response.xml +30 -0
  193. package/test/resources/9999999/queryDefinition/retrieve-CustomerKey=testNew_queryANDStatus=Active-response.xml +30 -0
  194. package/test/resources/9999999/script/build-expected.json +6 -0
  195. package/test/resources/9999999/script/build-expected.ssjs +1 -0
  196. package/test/resources/9999999/script/get-expected.json +8 -0
  197. package/test/resources/9999999/script/get-expected.ssjs +1 -0
  198. package/test/resources/9999999/script/get_noScriptTag-expected.html +1 -0
  199. package/test/resources/9999999/script/get_noScriptTag-expected.json +8 -0
  200. package/test/resources/9999999/script/patch-expected.json +8 -0
  201. package/test/resources/9999999/script/patch-expected.ssjs +1 -0
  202. package/test/resources/9999999/script/post-expected.json +8 -0
  203. package/test/resources/9999999/script/post-expected.ssjs +1 -0
  204. package/test/resources/9999999/script/template-expected.json +6 -0
  205. package/test/resources/9999999/script/template-expected.ssjs +1 -0
  206. package/test/resources/9999999/triggeredSend/build-expected.json +29 -0
  207. package/test/resources/9999999/triggeredSend/get-expected.json +29 -0
  208. package/test/resources/9999999/triggeredSend/patch-expected.json +29 -0
  209. package/test/resources/9999999/triggeredSend/post-expected.json +29 -0
  210. package/test/resources/9999999/triggeredSend/template-expected.json +29 -0
  211. package/test/resources/9999999/triggeredSendDefinition/create-response.xml +75 -0
  212. package/test/resources/9999999/triggeredSendDefinition/delete-response.xml +36 -0
  213. package/test/resources/9999999/triggeredSendDefinition/{retrieve-response.xml → retrieve-TriggeredSendStatusINNew,Active,Inactive,Moved,Canceled-response.xml} +4 -4
  214. package/test/resources/9999999/triggeredSendDefinition/update-response.xml +74 -0
  215. package/test/type.attributeGroup.test.js +55 -0
  216. package/test/type.attributeSet.test.js +55 -0
  217. package/test/type.automation.test.js +886 -0
  218. package/test/type.dataExtension.test.js +3 -1
  219. package/test/type.dataExtract.test.js +187 -0
  220. package/test/type.fileTransfer.test.js +185 -0
  221. package/test/type.importFile.test.js +186 -0
  222. package/test/type.mobileKeyword.test.js +0 -1
  223. package/test/type.query.test.js +497 -33
  224. package/test/type.script.test.js +367 -0
  225. package/test/type.triggeredSend.test.js +152 -0
  226. package/test/type.user.test.js +37 -11
  227. package/test/utils.js +10 -6
  228. package/.coverage-comment-template.md +0 -20
  229. package/lib/metadataTypes/SetDefinition.js +0 -37
  230. /package/test/mockRoot/deploy/testInstance/testBU/query/{testExistingQuery.query-meta.sql → testExisting_query.query-meta.sql} +0 -0
  231. /package/test/mockRoot/deploy/testInstance/testBU/query/{testNewQuery.query-meta.sql → testNew_query.query-meta.sql} +0 -0
  232. /package/test/resources/1111111/accountUser/{retrieve-response.xml → retrieve-ActiveFlag=trueANDCustomerKey=testExisting_userANDEmaillike@-response.xml} +0 -0
  233. /package/test/resources/1111111/accountUserAccount/{retrieve-response.xml → retrieve-AccountUser.AccountUserIDIN700301950,700301951,7471228-response.xml} +0 -0
  234. /package/test/resources/1111111/businessUnit/{retrieve-response.xml → retrieve-ID=1111111-response.xml} +0 -0
  235. /package/test/resources/1111111/list/{retrieve-response.xml → retrieve-CustomerKey=All SubscribersORListName=All Subscribers-response.xml} +0 -0
  236. /package/test/resources/1111111/role/{retrieve-response.xml → retrieve-IsPrivate=false-response.xml} +0 -0
  237. /package/test/resources/9999999/queryDefinition/{retrieve-response.xml → retrieve-CustomerKey=testExisting_queryANDStatus=Active-response.xml} +0 -0
@@ -0,0 +1,27 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
3
+ xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
4
+ xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
5
+ xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
6
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
7
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
8
+ <soap:Header>
9
+ <wsa:Action>RetrieveResponse</wsa:Action>
10
+ <wsa:MessageID>urn:uuid:1babdae0-9282-4bba-b69f-2f1843deaf11</wsa:MessageID>
11
+ <wsa:RelatesTo>urn:uuid:39d1c021-b3df-49f9-a8f7-bb444172d2d3</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-291db2ee-625d-49f7-8f6f-110317b081a5">
15
+ <wsu:Created>2023-03-11T13:53:00Z</wsu:Created>
16
+ <wsu:Expires>2023-03-11T13:58:00Z</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>5347bf1d-e801-486a-b4a9-c2d46a8909b6</RequestID>
24
+
25
+ </RetrieveResponseMsg>
26
+ </soap:Body>
27
+ </soap:Envelope>
@@ -0,0 +1,156 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
3
+ xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
4
+ xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
5
+ xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
6
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
7
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
8
+ <soap:Header>
9
+ <wsa:Action>RetrieveResponse</wsa:Action>
10
+ <wsa:MessageID>urn:uuid:1babdae0-9282-4bba-b69f-2f1843deaf11</wsa:MessageID>
11
+ <wsa:RelatesTo>urn:uuid:39d1c021-b3df-49f9-a8f7-bb444172d2d3</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-291db2ee-625d-49f7-8f6f-110317b081a5">
15
+ <wsu:Created>2023-03-11T13:53:00Z</wsu:Created>
16
+ <wsu:Expires>2023-03-11T13:58:00Z</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>5347bf1d-e801-486a-b4a9-c2d46a8909b6</RequestID>
24
+ <Results xsi:type="AccountUser">
25
+ <Client>
26
+ <ID>1111111</ID>
27
+ <ModifiedBy>123456</ModifiedBy>
28
+ </Client>
29
+ <PartnerKey xsi:nil="true" />
30
+ <CreatedDate>2019-09-06T01:59:07.097</CreatedDate>
31
+ <ModifiedDate>2022-06-21T01:43:02.64</ModifiedDate>
32
+ <ID>700301951</ID>
33
+ <ObjectID xsi:nil="true" />
34
+ <CustomerKey>testExisting_user_inactive</CustomerKey>
35
+ <AccountUserID>700301951</AccountUserID>
36
+ <UserID>user_test-inactive@accenture.asgr</UserID>
37
+ <Name>user test-inactive</Name>
38
+ <Email>user_test-inactive@accenture.com</Email>
39
+ <MustChangePassword>false</MustChangePassword>
40
+ <ActiveFlag>false</ActiveFlag>
41
+ <UserPermissions>
42
+ <PartnerKey xsi:nil="true" />
43
+ <ID>2</ID>
44
+ <ObjectID xsi:nil="true" />
45
+ <Name xsi:nil="true" />
46
+ <Value xsi:nil="true" />
47
+ <Description xsi:nil="true" />
48
+ <Delete>0</Delete>
49
+ </UserPermissions>
50
+ <UserPermissions>
51
+ <PartnerKey xsi:nil="true" />
52
+ <ID>3</ID>
53
+ <ObjectID xsi:nil="true" />
54
+ <Name xsi:nil="true" />
55
+ <Value xsi:nil="true" />
56
+ <Description xsi:nil="true" />
57
+ <Delete>0</Delete>
58
+ </UserPermissions>
59
+ <Delete>0</Delete>
60
+ <LastSuccessfulLogin>2023-02-23T10:14:11.443</LastSuccessfulLogin>
61
+ <IsAPIUser>false</IsAPIUser>
62
+ <NotificationEmailAddress>user_test-inactive@accenture.com</NotificationEmailAddress>
63
+ <IsLocked>false</IsLocked>
64
+ <DefaultBusinessUnit>1111111</DefaultBusinessUnit>
65
+ <DefaultBusinessUnitObject>
66
+ <PartnerKey xsi:nil="true" />
67
+ <ID>1111111</ID>
68
+ <ObjectID xsi:nil="true" />
69
+ <AccountType>None</AccountType>
70
+ <Subscription xsi:nil="true" />
71
+ </DefaultBusinessUnitObject>
72
+ <Locale>
73
+ <PartnerKey xsi:nil="true" />
74
+ <ObjectID xsi:nil="true" />
75
+ <LocaleCode>en-GB</LocaleCode>
76
+ </Locale>
77
+ <TimeZone>
78
+ <PartnerKey xsi:nil="true" />
79
+ <ID>5</ID>
80
+ <ObjectID xsi:nil="true" />
81
+ <Name>(GMT+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna *</Name>
82
+ </TimeZone>
83
+ <Roles>
84
+ <Role>
85
+ <Client>
86
+ <ID>1111111</ID>
87
+ <CreatedBy>-1000</CreatedBy>
88
+ <ModifiedBy>-1000</ModifiedBy>
89
+ <EnterpriseID>1111111</EnterpriseID>
90
+ </Client>
91
+ <PartnerKey xsi:nil="true" />
92
+ <CreatedDate>2016-07-22T17:52:36.93</CreatedDate>
93
+ <ModifiedDate>2016-07-22T17:52:36.93</ModifiedDate>
94
+ <ObjectID>f1cfb80f-3550-e611-96fe-38eaa7142c61</ObjectID>
95
+ <CustomerKey>SYS_DEF_ADMIN</CustomerKey>
96
+ <Name>Administrator</Name>
97
+ <Description>Administrator</Description>
98
+ <IsPrivate>false</IsPrivate>
99
+ <IsSystemDefined>true</IsSystemDefined>
100
+ </Role>
101
+ <Role>
102
+ <Client>
103
+ <ID>1111111</ID>
104
+ <CreatedBy>-1000</CreatedBy>
105
+ <ModifiedBy>-1000</ModifiedBy>
106
+ <EnterpriseID>1111111</EnterpriseID>
107
+ </Client>
108
+ <PartnerKey xsi:nil="true" />
109
+ <CreatedDate>2016-07-22T17:52:36.93</CreatedDate>
110
+ <ModifiedDate>2016-07-22T17:52:36.93</ModifiedDate>
111
+ <ObjectID>f4cfb80f-3550-e611-96fe-38eaa7142c61</ObjectID>
112
+ <CustomerKey>SYS_DEF_CONTENT</CustomerKey>
113
+ <Name>Content Creator</Name>
114
+ <Description>Content Creator</Description>
115
+ <IsPrivate>false</IsPrivate>
116
+ <IsSystemDefined>true</IsSystemDefined>
117
+ </Role>
118
+ <Role>
119
+ <Client>
120
+ <ID>1111111</ID>
121
+ <CreatedBy>-1000</CreatedBy>
122
+ <ModifiedBy>-1000</ModifiedBy>
123
+ <EnterpriseID>1111111</EnterpriseID>
124
+ </Client>
125
+ <PartnerKey xsi:nil="true" />
126
+ <CreatedDate>2019-09-06T07:59:07.8</CreatedDate>
127
+ <ModifiedDate>2019-09-06T07:59:07.8</ModifiedDate>
128
+ <ObjectID>bd251431-7cd0-e911-a2d3-1402ec936979</ObjectID>
129
+ <CustomerKey>Individual role for 700301951</CustomerKey>
130
+ <Name>Individual role for 700301951</Name>
131
+ <Description>Individual role for 700301951</Description>
132
+ <IsPrivate>true</IsPrivate>
133
+ <IsSystemDefined>false</IsSystemDefined>
134
+ </Role>
135
+ <Role>
136
+ <Client>
137
+ <ID>0</ID>
138
+ <CreatedBy>0</CreatedBy>
139
+ <ModifiedBy>0</ModifiedBy>
140
+ <EnterpriseID>0</EnterpriseID>
141
+ </Client>
142
+ <PartnerKey xsi:nil="true" />
143
+ <CreatedDate>2012-02-21T02:09:19.983</CreatedDate>
144
+ <ModifiedDate>2013-12-23T16:48:50.533</ModifiedDate>
145
+ <ObjectID>63a50610-315c-e111-beee-8e001800001f</ObjectID>
146
+ <CustomerKey>SYS_DEF_IMHADMIN</CustomerKey>
147
+ <Name>Marketing Cloud Administrator</Name>
148
+ <Description>Assign Marketing Cloud roles to users and manage Mobile, Social and Sites Channels, Hub Apps and Marketing Cloud Tools</Description>
149
+ <IsPrivate>false</IsPrivate>
150
+ <IsSystemDefined>true</IsSystemDefined>
151
+ </Role>
152
+ </Roles>
153
+ </Results>
154
+ </RetrieveResponseMsg>
155
+ </soap:Body>
156
+ </soap:Envelope>
@@ -0,0 +1,87 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
3
+ xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
4
+ xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
5
+ xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
6
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
7
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
8
+ <soap:Header>
9
+ <wsa:Action>RetrieveResponse</wsa:Action>
10
+ <wsa:MessageID>urn:uuid:1babdae0-9282-4bba-b69f-2f1843deaf11</wsa:MessageID>
11
+ <wsa:RelatesTo>urn:uuid:39d1c021-b3df-49f9-a8f7-bb444172d2d3</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-291db2ee-625d-49f7-8f6f-110317b081a5">
15
+ <wsu:Created>2023-03-11T13:53:00Z</wsu:Created>
16
+ <wsu:Expires>2023-03-11T13:58:00Z</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>5347bf1d-e801-486a-b4a9-c2d46a8909b6</RequestID>
24
+ <Results xsi:type="AccountUser">
25
+ <Client>
26
+ <ID>1111111</ID>
27
+ <ModifiedBy>0</ModifiedBy>
28
+ </Client>
29
+ <PartnerKey xsi:nil="true" />
30
+ <CreatedDate>2016-07-22T11:52:37.42</CreatedDate>
31
+ <ModifiedDate>2023-05-27T07:05:55.113</ModifiedDate>
32
+ <ID>7471228</ID>
33
+ <ObjectID xsi:nil="true" />
34
+ <CustomerKey>45372cbb-06e0-438e-88d8-008981f7a18b</CustomerKey>
35
+ <AccountUserID>7471228</AccountUserID>
36
+ <UserID>20f2d94a-9a7d-4580-9fb6-c36a1ce32fb9</UserID>
37
+ <Name>igopredictiveemail app user</Name>
38
+ <Email />
39
+ <MustChangePassword>false</MustChangePassword>
40
+ <ActiveFlag>true</ActiveFlag>
41
+ <Delete>0</Delete>
42
+ <LastSuccessfulLogin></LastSuccessfulLogin>
43
+ <IsAPIUser>true</IsAPIUser>
44
+ <NotificationEmailAddress />
45
+ <IsLocked>false</IsLocked>
46
+ <DefaultBusinessUnit>1111111</DefaultBusinessUnit>
47
+ <Locale>
48
+ <PartnerKey xsi:nil="true" />
49
+ <ObjectID xsi:nil="true" />
50
+ <LocaleCode>en-GB</LocaleCode>
51
+ </Locale>
52
+ <TimeZone>
53
+ <PartnerKey xsi:nil="true" />
54
+ <ID>5</ID>
55
+ <ObjectID xsi:nil="true" />
56
+ <Name>(GMT+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna</Name>
57
+ </TimeZone>
58
+ <DefaultBusinessUnitObject>
59
+ <PartnerKey xsi:nil="true" />
60
+ <ID>1111111</ID>
61
+ <ObjectID xsi:nil="true" />
62
+ <AccountType>None</AccountType>
63
+ <Subscription xsi:nil="true" />
64
+ </DefaultBusinessUnitObject>
65
+ <Roles>
66
+ <Role>
67
+ <Client>
68
+ <ID>1111111</ID>
69
+ <CreatedBy>0</CreatedBy>
70
+ <ModifiedBy>0</ModifiedBy>
71
+ <EnterpriseID>1111111</EnterpriseID>
72
+ </Client>
73
+ <PartnerKey xsi:nil="true" />
74
+ <CreatedDate>2016-07-22T17:52:37.88</CreatedDate>
75
+ <ModifiedDate>2016-07-22T17:52:37.88</ModifiedDate>
76
+ <ObjectID>44d0b80f-3550-e611-96fe-38eaa7142c61</ObjectID>
77
+ <CustomerKey>Individual role for 7471228</CustomerKey>
78
+ <Name>Individual role for 7471228</Name>
79
+ <Description>Individual role for 7471228</Description>
80
+ <IsPrivate>true</IsPrivate>
81
+ <IsSystemDefined>false</IsSystemDefined>
82
+ </Role>
83
+ </Roles>
84
+ </Results>
85
+ </RetrieveResponseMsg>
86
+ </soap:Body>
87
+ </soap:Envelope>
@@ -0,0 +1,156 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
3
+ xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
4
+ xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
5
+ xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
6
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
7
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
8
+ <soap:Header>
9
+ <wsa:Action>RetrieveResponse</wsa:Action>
10
+ <wsa:MessageID>urn:uuid:1babdae0-9282-4bba-b69f-2f1843deaf11</wsa:MessageID>
11
+ <wsa:RelatesTo>urn:uuid:39d1c021-b3df-49f9-a8f7-bb444172d2d3</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-291db2ee-625d-49f7-8f6f-110317b081a5">
15
+ <wsu:Created>2023-03-11T13:53:00Z</wsu:Created>
16
+ <wsu:Expires>2023-03-11T13:58:00Z</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>5347bf1d-e801-486a-b4a9-c2d46a8909b6</RequestID>
24
+ <Results xsi:type="AccountUser">
25
+ <Client>
26
+ <ID>1111111</ID>
27
+ <ModifiedBy>123456</ModifiedBy>
28
+ </Client>
29
+ <PartnerKey xsi:nil="true" />
30
+ <CreatedDate>2019-09-06T01:59:07.097</CreatedDate>
31
+ <ModifiedDate>2022-06-21T01:43:02.64</ModifiedDate>
32
+ <ID>700301950</ID>
33
+ <ObjectID xsi:nil="true" />
34
+ <CustomerKey>testExisting_user</CustomerKey>
35
+ <AccountUserID>700301950</AccountUserID>
36
+ <UserID>user_test@accenture.asgr</UserID>
37
+ <Name>user test</Name>
38
+ <Email>user_test@accenture.com</Email>
39
+ <MustChangePassword>false</MustChangePassword>
40
+ <ActiveFlag>true</ActiveFlag>
41
+ <UserPermissions>
42
+ <PartnerKey xsi:nil="true" />
43
+ <ID>2</ID>
44
+ <ObjectID xsi:nil="true" />
45
+ <Name xsi:nil="true" />
46
+ <Value xsi:nil="true" />
47
+ <Description xsi:nil="true" />
48
+ <Delete>0</Delete>
49
+ </UserPermissions>
50
+ <UserPermissions>
51
+ <PartnerKey xsi:nil="true" />
52
+ <ID>3</ID>
53
+ <ObjectID xsi:nil="true" />
54
+ <Name xsi:nil="true" />
55
+ <Value xsi:nil="true" />
56
+ <Description xsi:nil="true" />
57
+ <Delete>0</Delete>
58
+ </UserPermissions>
59
+ <Delete>0</Delete>
60
+ <LastSuccessfulLogin>2023-02-23T10:14:11.443</LastSuccessfulLogin>
61
+ <IsAPIUser>false</IsAPIUser>
62
+ <NotificationEmailAddress>user_test@accenture.com</NotificationEmailAddress>
63
+ <IsLocked>false</IsLocked>
64
+ <DefaultBusinessUnit>1111111</DefaultBusinessUnit>
65
+ <DefaultBusinessUnitObject>
66
+ <PartnerKey xsi:nil="true" />
67
+ <ID>1111111</ID>
68
+ <ObjectID xsi:nil="true" />
69
+ <AccountType>None</AccountType>
70
+ <Subscription xsi:nil="true" />
71
+ </DefaultBusinessUnitObject>
72
+ <Locale>
73
+ <PartnerKey xsi:nil="true" />
74
+ <ObjectID xsi:nil="true" />
75
+ <LocaleCode>en-GB</LocaleCode>
76
+ </Locale>
77
+ <TimeZone>
78
+ <PartnerKey xsi:nil="true" />
79
+ <ID>5</ID>
80
+ <ObjectID xsi:nil="true" />
81
+ <Name>(GMT+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna *</Name>
82
+ </TimeZone>
83
+ <Roles>
84
+ <Role>
85
+ <Client>
86
+ <ID>1111111</ID>
87
+ <CreatedBy>-1000</CreatedBy>
88
+ <ModifiedBy>-1000</ModifiedBy>
89
+ <EnterpriseID>1111111</EnterpriseID>
90
+ </Client>
91
+ <PartnerKey xsi:nil="true" />
92
+ <CreatedDate>2016-07-22T17:52:36.93</CreatedDate>
93
+ <ModifiedDate>2016-07-22T17:52:36.93</ModifiedDate>
94
+ <ObjectID>f1cfb80f-3550-e611-96fe-38eaa7142c61</ObjectID>
95
+ <CustomerKey>SYS_DEF_ADMIN</CustomerKey>
96
+ <Name>Administrator</Name>
97
+ <Description>Administrator</Description>
98
+ <IsPrivate>false</IsPrivate>
99
+ <IsSystemDefined>true</IsSystemDefined>
100
+ </Role>
101
+ <Role>
102
+ <Client>
103
+ <ID>1111111</ID>
104
+ <CreatedBy>-1000</CreatedBy>
105
+ <ModifiedBy>-1000</ModifiedBy>
106
+ <EnterpriseID>1111111</EnterpriseID>
107
+ </Client>
108
+ <PartnerKey xsi:nil="true" />
109
+ <CreatedDate>2016-07-22T17:52:36.93</CreatedDate>
110
+ <ModifiedDate>2016-07-22T17:52:36.93</ModifiedDate>
111
+ <ObjectID>f4cfb80f-3550-e611-96fe-38eaa7142c61</ObjectID>
112
+ <CustomerKey>SYS_DEF_CONTENT</CustomerKey>
113
+ <Name>Content Creator</Name>
114
+ <Description>Content Creator</Description>
115
+ <IsPrivate>false</IsPrivate>
116
+ <IsSystemDefined>true</IsSystemDefined>
117
+ </Role>
118
+ <Role>
119
+ <Client>
120
+ <ID>1111111</ID>
121
+ <CreatedBy>-1000</CreatedBy>
122
+ <ModifiedBy>-1000</ModifiedBy>
123
+ <EnterpriseID>1111111</EnterpriseID>
124
+ </Client>
125
+ <PartnerKey xsi:nil="true" />
126
+ <CreatedDate>2019-09-06T07:59:07.8</CreatedDate>
127
+ <ModifiedDate>2019-09-06T07:59:07.8</ModifiedDate>
128
+ <ObjectID>bd251431-7cd0-e911-a2d3-1402ec936979</ObjectID>
129
+ <CustomerKey>Individual role for 700301950</CustomerKey>
130
+ <Name>Individual role for 700301950</Name>
131
+ <Description>Individual role for 700301950</Description>
132
+ <IsPrivate>true</IsPrivate>
133
+ <IsSystemDefined>false</IsSystemDefined>
134
+ </Role>
135
+ <Role>
136
+ <Client>
137
+ <ID>0</ID>
138
+ <CreatedBy>0</CreatedBy>
139
+ <ModifiedBy>0</ModifiedBy>
140
+ <EnterpriseID>0</EnterpriseID>
141
+ </Client>
142
+ <PartnerKey xsi:nil="true" />
143
+ <CreatedDate>2012-02-21T02:09:19.983</CreatedDate>
144
+ <ModifiedDate>2013-12-23T16:48:50.533</ModifiedDate>
145
+ <ObjectID>63a50610-315c-e111-beee-8e001800001f</ObjectID>
146
+ <CustomerKey>SYS_DEF_IMHADMIN</CustomerKey>
147
+ <Name>Marketing Cloud Administrator</Name>
148
+ <Description>Assign Marketing Cloud roles to users and manage Mobile, Social and Sites Channels, Hub Apps and Marketing Cloud Tools</Description>
149
+ <IsPrivate>false</IsPrivate>
150
+ <IsSystemDefined>true</IsSystemDefined>
151
+ </Role>
152
+ </Roles>
153
+ </Results>
154
+ </RetrieveResponseMsg>
155
+ </soap:Body>
156
+ </soap:Envelope>
@@ -0,0 +1,27 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
3
+ xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
4
+ xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
5
+ xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
6
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
7
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
8
+ <soap:Header>
9
+ <wsa:Action>RetrieveResponse</wsa:Action>
10
+ <wsa:MessageID>urn:uuid:1babdae0-9282-4bba-b69f-2f1843deaf11</wsa:MessageID>
11
+ <wsa:RelatesTo>urn:uuid:39d1c021-b3df-49f9-a8f7-bb444172d2d3</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-291db2ee-625d-49f7-8f6f-110317b081a5">
15
+ <wsu:Created>2023-03-11T13:53:00Z</wsu:Created>
16
+ <wsu:Expires>2023-03-11T13:58:00Z</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>5347bf1d-e801-486a-b4a9-c2d46a8909b6</RequestID>
24
+
25
+ </RetrieveResponseMsg>
26
+ </soap:Body>
27
+ </soap:Envelope>
@@ -0,0 +1,60 @@
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>700301950</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>9999999</ID>
53
+ <ObjectID xsi:nil="true" />
54
+ <AccountType>None</AccountType>
55
+ <Subscription xsi:nil="true" />
56
+ </Account>
57
+ </Results>
58
+ </RetrieveResponseMsg>
59
+ </soap:Body>
60
+ </soap:Envelope>
@@ -7,13 +7,15 @@
7
7
  | user test | 96 days | ✓ | - | - | - | <nobr>_ParentBU_ (1111111)</nobr> | <nobr>_ParentBU_ (1111111)</nobr>,<br> <nobr>testBU (9999999)</nobr> | <nobr>Administrator,</nobr><br> <nobr>Content Creator,</nobr><br> <nobr>Marketing Cloud Administrator</nobr> | user_test@accenture.asgr | 700301950 | testExisting_user | user_test@accenture.com | user_test@accenture.com | GMT+01:00 | en-GB | 2022-06-21 01:43:02.64 | 123456 | 2019-09-06 01:59:07.097 |
8
8
 
9
9
 
10
- ## Inactivated Users (0)
10
+ ## Inactivated Users (1)
11
11
 
12
12
  | Name | Last successful Login | Active | Access Locked out | API User | Must change PW | Default BU | BU Access | Roles | Login | ID | Key | E-Mail | Notification E-Mail | Timezone | SFMC Locale | Modified Date | Modified By | Created Date |
13
13
  | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
14
+ | user test-inactive | 96 days | - | - | - | - | <nobr>_ParentBU_ (1111111)</nobr> | <nobr>_ParentBU_ (1111111)</nobr> | <nobr>Administrator,</nobr><br> <nobr>Content Creator,</nobr><br> <nobr>Marketing Cloud Administrator</nobr> | user_test-inactive@accenture.asgr | 700301951 | testExisting_user_inactive | user_test-inactive@accenture.com | user_test-inactive@accenture.com | GMT+01:00 | en-GB | 2022-06-21 01:43:02.64 | 123456 | 2019-09-06 01:59:07.097 |
14
15
 
15
16
 
16
- ## Installed Packages (0)
17
+ ## Installed Packages (1)
17
18
 
18
19
  | Name | Last successful Login | Active | Access Locked out | API User | Must change PW | Default BU | BU Access | Roles | Login | ID | Key | E-Mail | Notification E-Mail | Timezone | SFMC Locale | Modified Date | Modified By | Created Date |
19
20
  | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
21
+ | igopredictiveemail app user | never | ✓ | - | ✓ | - | <nobr>_ParentBU_ (1111111)</nobr> | <nobr>_ParentBU_ (1111111)</nobr> | <nobr></nobr> | 20f2d94a-9a7d-4580-9fb6-c36a1ce32fb9 | 7471228 | 45372cbb-06e0-438e-88d8-008981f7a18b | | | GMT+01:00 | en-GB | 2023-05-27 07:05:55.113 | n/a | 2016-07-22 11:52:37.42 |
@@ -0,0 +1,25 @@
1
+ {
2
+ "applicationKey": "com.exacttarget.mobileconnect",
3
+ "attributeCount": 37,
4
+ "attributeGroupIconKey": "Mobile",
5
+ "attributeGroupType": "Standard",
6
+ "attributeSetIdentifiers": ["MobileDemographics", "MobileSubscriptions"],
7
+ "canAddProperties": false,
8
+ "canAddRelationships": true,
9
+ "canChangeProperties": false,
10
+ "canModify": false,
11
+ "canRemove": false,
12
+ "definitionKey": "ETMobileConnect",
13
+ "definitionName": {
14
+ "value": "MobileConnect Data"
15
+ },
16
+ "description": "",
17
+ "displayOrder": 4,
18
+ "isHidden": false,
19
+ "isOwner": true,
20
+ "isSystemDefined": true,
21
+ "requiredRelationships": [
22
+ "4651de3f-31e2-e611-80cc-1402ec7222b4",
23
+ "4352de3f-31e2-e611-80cc-1402ec7222b4"
24
+ ]
25
+ }