adoptai-mcp 1.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.
Files changed (174) hide show
  1. package/README.md +70 -0
  2. package/bin/adoptai-mcp.js +2 -0
  3. package/dist/apps/canva.js +1 -0
  4. package/dist/apps/figma.js +1 -0
  5. package/dist/apps/github.js +2 -0
  6. package/dist/apps/notion.js +1 -0
  7. package/dist/apps/registry.js +20 -0
  8. package/dist/apps/salesforce.js +1 -0
  9. package/dist/cli/add.js +532 -0
  10. package/dist/cli/index.js +39 -0
  11. package/dist/cli/list.js +19 -0
  12. package/dist/cli/remove.js +37 -0
  13. package/dist/cli/serve.js +27 -0
  14. package/dist/cli/status.js +24 -0
  15. package/dist/config/clients.js +118 -0
  16. package/dist/config/credentials.js +34 -0
  17. package/dist/core/auth-manager.js +237 -0
  18. package/dist/core/config-writer.js +161 -0
  19. package/dist/core/doctor.js +199 -0
  20. package/dist/core/package.json +3 -0
  21. package/dist/core/server-base.js +81 -0
  22. package/dist/integrations/canva/.env +3 -0
  23. package/dist/integrations/canva/auth.js +287 -0
  24. package/dist/integrations/canva/env.js +9 -0
  25. package/dist/integrations/canva/index.js +12 -0
  26. package/dist/integrations/canva/package.json +31 -0
  27. package/dist/integrations/canva/publish-to-adoptai.js +365 -0
  28. package/dist/integrations/canva/setup.js +90 -0
  29. package/dist/integrations/canva/tools.js +1315 -0
  30. package/dist/integrations/canva/tools.original.js +1315 -0
  31. package/dist/integrations/figma/auth.js +48 -0
  32. package/dist/integrations/figma/index.js +11 -0
  33. package/dist/integrations/figma/package.json +27 -0
  34. package/dist/integrations/figma/publish-to-adoptai.js +384 -0
  35. package/dist/integrations/figma/setup.js +90 -0
  36. package/dist/integrations/figma/tools.js +1137 -0
  37. package/dist/integrations/github/auth.js +53 -0
  38. package/dist/integrations/github/index.js +11 -0
  39. package/dist/integrations/github/package.json +28 -0
  40. package/dist/integrations/github/publish-to-adoptai.js +240 -0
  41. package/dist/integrations/github/setup.js +103 -0
  42. package/dist/integrations/github/tools.js +78 -0
  43. package/dist/integrations/github-actions/auth.js +53 -0
  44. package/dist/integrations/github-actions/index.js +11 -0
  45. package/dist/integrations/github-actions/package.json +27 -0
  46. package/dist/integrations/github-actions/setup.js +103 -0
  47. package/dist/integrations/github-actions/tools.js +5642 -0
  48. package/dist/integrations/github-activity/auth.js +53 -0
  49. package/dist/integrations/github-activity/index.js +11 -0
  50. package/dist/integrations/github-activity/package.json +27 -0
  51. package/dist/integrations/github-activity/setup.js +103 -0
  52. package/dist/integrations/github-activity/tools.js +925 -0
  53. package/dist/integrations/github-apps/auth.js +53 -0
  54. package/dist/integrations/github-apps/index.js +11 -0
  55. package/dist/integrations/github-apps/package.json +27 -0
  56. package/dist/integrations/github-apps/setup.js +103 -0
  57. package/dist/integrations/github-apps/tools.js +791 -0
  58. package/dist/integrations/github-billing/auth.js +53 -0
  59. package/dist/integrations/github-billing/index.js +11 -0
  60. package/dist/integrations/github-billing/package.json +27 -0
  61. package/dist/integrations/github-billing/setup.js +103 -0
  62. package/dist/integrations/github-billing/tools.js +438 -0
  63. package/dist/integrations/github-checks/auth.js +53 -0
  64. package/dist/integrations/github-checks/index.js +11 -0
  65. package/dist/integrations/github-checks/package.json +27 -0
  66. package/dist/integrations/github-checks/setup.js +103 -0
  67. package/dist/integrations/github-checks/tools.js +607 -0
  68. package/dist/integrations/github-code-scanning/auth.js +53 -0
  69. package/dist/integrations/github-code-scanning/index.js +11 -0
  70. package/dist/integrations/github-code-scanning/package.json +27 -0
  71. package/dist/integrations/github-code-scanning/setup.js +103 -0
  72. package/dist/integrations/github-code-scanning/tools.js +987 -0
  73. package/dist/integrations/github-dependabot/auth.js +53 -0
  74. package/dist/integrations/github-dependabot/index.js +11 -0
  75. package/dist/integrations/github-dependabot/package.json +27 -0
  76. package/dist/integrations/github-dependabot/setup.js +103 -0
  77. package/dist/integrations/github-dependabot/tools.js +915 -0
  78. package/dist/integrations/github-gists/auth.js +53 -0
  79. package/dist/integrations/github-gists/index.js +11 -0
  80. package/dist/integrations/github-gists/package.json +27 -0
  81. package/dist/integrations/github-gists/setup.js +103 -0
  82. package/dist/integrations/github-gists/tools.js +545 -0
  83. package/dist/integrations/github-git/auth.js +53 -0
  84. package/dist/integrations/github-git/index.js +11 -0
  85. package/dist/integrations/github-git/package.json +27 -0
  86. package/dist/integrations/github-git/setup.js +103 -0
  87. package/dist/integrations/github-git/tools.js +513 -0
  88. package/dist/integrations/github-issues/auth.js +53 -0
  89. package/dist/integrations/github-issues/index.js +11 -0
  90. package/dist/integrations/github-issues/package.json +27 -0
  91. package/dist/integrations/github-issues/setup.js +103 -0
  92. package/dist/integrations/github-issues/tools.js +2232 -0
  93. package/dist/integrations/github-orgs/auth.js +53 -0
  94. package/dist/integrations/github-orgs/index.js +11 -0
  95. package/dist/integrations/github-orgs/package.json +27 -0
  96. package/dist/integrations/github-orgs/setup.js +103 -0
  97. package/dist/integrations/github-orgs/tools.js +3512 -0
  98. package/dist/integrations/github-packages/auth.js +53 -0
  99. package/dist/integrations/github-packages/index.js +11 -0
  100. package/dist/integrations/github-packages/package.json +27 -0
  101. package/dist/integrations/github-packages/setup.js +103 -0
  102. package/dist/integrations/github-packages/tools.js +1088 -0
  103. package/dist/integrations/github-pulls/auth.js +53 -0
  104. package/dist/integrations/github-pulls/index.js +11 -0
  105. package/dist/integrations/github-pulls/package.json +27 -0
  106. package/dist/integrations/github-pulls/setup.js +103 -0
  107. package/dist/integrations/github-pulls/tools.js +1252 -0
  108. package/dist/integrations/github-reactions/auth.js +53 -0
  109. package/dist/integrations/github-reactions/index.js +11 -0
  110. package/dist/integrations/github-reactions/package.json +27 -0
  111. package/dist/integrations/github-reactions/setup.js +103 -0
  112. package/dist/integrations/github-reactions/tools.js +706 -0
  113. package/dist/integrations/github-repos/auth.js +53 -0
  114. package/dist/integrations/github-repos/index.js +11 -0
  115. package/dist/integrations/github-repos/package.json +27 -0
  116. package/dist/integrations/github-repos/setup.js +103 -0
  117. package/dist/integrations/github-repos/tools.js +7286 -0
  118. package/dist/integrations/github-search/auth.js +53 -0
  119. package/dist/integrations/github-search/index.js +11 -0
  120. package/dist/integrations/github-search/package.json +27 -0
  121. package/dist/integrations/github-search/setup.js +103 -0
  122. package/dist/integrations/github-search/tools.js +370 -0
  123. package/dist/integrations/github-teams/auth.js +53 -0
  124. package/dist/integrations/github-teams/index.js +11 -0
  125. package/dist/integrations/github-teams/package.json +27 -0
  126. package/dist/integrations/github-teams/setup.js +103 -0
  127. package/dist/integrations/github-teams/tools.js +633 -0
  128. package/dist/integrations/github-users/auth.js +53 -0
  129. package/dist/integrations/github-users/index.js +11 -0
  130. package/dist/integrations/github-users/package.json +27 -0
  131. package/dist/integrations/github-users/setup.js +103 -0
  132. package/dist/integrations/github-users/tools.js +1118 -0
  133. package/dist/integrations/notion/api.js +108 -0
  134. package/dist/integrations/notion/auth.js +59 -0
  135. package/dist/integrations/notion/endpoints.json +630 -0
  136. package/dist/integrations/notion/index.js +11 -0
  137. package/dist/integrations/notion/package.json +33 -0
  138. package/dist/integrations/notion/publish-to-adoptai.js +271 -0
  139. package/dist/integrations/notion/scripts/generate-endpoints.mjs +306 -0
  140. package/dist/integrations/notion/setup.js +89 -0
  141. package/dist/integrations/notion/tools.js +586 -0
  142. package/dist/integrations/notion/tools.original.js +568 -0
  143. package/dist/integrations/salesforce/.env +8 -0
  144. package/dist/integrations/salesforce/.env.example +15 -0
  145. package/dist/integrations/salesforce/auth.js +311 -0
  146. package/dist/integrations/salesforce/endpoints.json +1359 -0
  147. package/dist/integrations/salesforce/env.js +9 -0
  148. package/dist/integrations/salesforce/index.js +12 -0
  149. package/dist/integrations/salesforce/package.json +42 -0
  150. package/dist/integrations/salesforce/publish-smart-specs.js +890 -0
  151. package/dist/integrations/salesforce/publish-to-adoptai.js +386 -0
  152. package/dist/integrations/salesforce/scripts/extract-postman.mjs +222 -0
  153. package/dist/integrations/salesforce/setup.js +112 -0
  154. package/dist/integrations/salesforce/tools.js +4544 -0
  155. package/dist/integrations/salesforce/tools.original.js +4487 -0
  156. package/dist/server/mcp-server.js +50 -0
  157. package/dist/server/tool-loader.js +47 -0
  158. package/dist/specs/figma-api.json +13621 -0
  159. package/dist/specs/split/salesforce-auth.json +3931 -0
  160. package/dist/specs/split/salesforce-bulk-v1.json +1489 -0
  161. package/dist/specs/split/salesforce-bulk-v2.json +1951 -0
  162. package/dist/specs/split/salesforce-composite.json +1246 -0
  163. package/dist/specs/split/salesforce-connect.json +11639 -0
  164. package/dist/specs/split/salesforce-einstein-prediction-service.json +576 -0
  165. package/dist/specs/split/salesforce-event-platform.json +2682 -0
  166. package/dist/specs/split/salesforce-graphql.json +1754 -0
  167. package/dist/specs/split/salesforce-industries.json +4115 -0
  168. package/dist/specs/split/salesforce-metadata.json +555 -0
  169. package/dist/specs/split/salesforce-rest.json +4798 -0
  170. package/dist/specs/split/salesforce-soap.json +210 -0
  171. package/dist/specs/split/salesforce-subscription-management.json +1299 -0
  172. package/dist/specs/split/salesforce-tooling.json +2026 -0
  173. package/dist/specs/split/salesforce-ui.json +7426 -0
  174. package/package.json +47 -0
@@ -0,0 +1,4115 @@
1
+ {
2
+ "info": {
3
+ "_postman_id": "67cb9baa-e0da-4986-957e-88d8734647e2",
4
+ "name": "Salesforce Platform APIs - industries",
5
+ "description": "The Salesforce Platform APIs collection contains 250+ requests and example responses for the following APIs:\n\n<table><tbody><tr><td><div>Auth<br>Bulk (v1 &amp; v2)<br>Composite<br>Connect<br>CPQ<br>Einstein Prediction Service<br>Event Platform</div><div contenteditable=\"false\"><div><div><div></div></div></div><div></div></div></td><td><div>GraphQL<br>Loyalty Management<br>Metadata<br>REST<br>Subscription Management<br>Tooling<br>UI</div><div contenteditable=\"false\"><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n**⚠️ Disclaimer:** this collection is not covered by Salesforce support and SLAs.\n\n## Get Started\n\nClick the button below and follow the instructions from the following sections: \n[<img src=\"https://run.pstmn.io/button.svg\" alt=\"Run In Postman\">](https://god.gw.postman.com/run-collection/12721794-67cb9baa-e0da-4986-957e-88d8734647e2?action=collection%2Ffork&source=rip_markdown&collection-url=entityId%3D12721794-67cb9baa-e0da-4986-957e-88d8734647e2%26entityType%3Dcollection%26workspaceId%3D34382471-0c97-40e5-a206-f947271665c4)\n\n### New Salesforce Users\n\nIf you are new to Salesforce, start by obtaining a free [Developer Edition Org](https://developer.salesforce.com/signup) then, follow the rest of the instructions from this documentation.\n\nYou can also watch our [Beginner's Mind YouTube series](https://www.youtube.com/playlist?list=PLgIMQe2PKPSKJ33M6CX-VLvgax7Xptcmz) for a tour of the Salesforce Platform (the last episode focuses on APIs).\n\n### New Postman Users\n\n<table><tbody><tr><td><div><p>If you are new to Postman, complete this Trailhead project to setup the collection: <a rel=\"noreferrer noopener nofollow\" href=\"https://trailhead.salesforce.com/content/learn/projects/quick-start-connect-postman-to-salesforce\" target=\"_blank\" url=\"https://trailhead.salesforce.com/content/learn/projects/quick-start-connect-postman-to-salesforce\">Quick Start: Connect Postman to Salesforce</a>.<br></p><figure editor=\"[object Object]\"><div contenteditable=\"false\"><div><img src=\"https://res.cloudinary.com/hy4kyit2a/f_auto,fl_lossy,q_70/learn/projects/quick-start-connect-postman-to-salesforce/d281185a04fbccaf4f1d37e51a3b0049_badge.png\" alt=\"\"><div><div></div><div><div></div></div><div></div><div><div></div></div><div></div><div></div><div></div><div></div></div></div></div></figure></div><div contenteditable=\"false\"><div><div><div></div></div></div><div></div></div></td><td><div><p>If you want to learn more about Postman in general, you can also complete this optional Trailhead badge: <a rel=\"noreferrer noopener nofollow\" href=\"https://trailhead.salesforce.com/content/learn/modules/postman-api-client\" target=\"_blank\" url=\"https://trailhead.salesforce.com/content/learn/modules/postman-api-client\">Postman API Client</a>.<br></p><figure editor=\"[object Object]\"><div contenteditable=\"false\"><div><img src=\"https://res.cloudinary.com/hy4kyit2a/f_auto,fl_lossy,q_70/learn/modules/postman-api-client/c4f5ce5df16040d22df5f1cfb77af5a6_badge.png\" alt=\"\"><div><div></div><div><div></div></div><div></div><div><div></div></div><div></div><div></div><div></div><div></div></div></div></div></figure></div><div contenteditable=\"false\"><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n### Regular Postman Users\n\nIf you are already familiar with Postman, here are the minimal getting started steps:\n\n1. If using Postman Web UI, follow these [steps to set up CORS](https://github.com/forcedotcom/postman-salesforce-apis/blob/master/install-with-web.md#enable-cors-in-salesforce) in your Salesforce Org. This is not required when working with the Postman Desktop app.\n \n2. Assign the following value to the `clientId` collection variable (this is a temporary step due to a Postman bug):\n\n```\n{{vault:salesforce-consumer-key}}\n```\n \n3. Assign a value to the `url` collection variable based on your Salesforce Org type:\n \n | URL | Org Type |\n | --- | --- |\n | `https://test.salesforce.com` | Sandboxes or Scratch orgs. |\n | `https://login.salesforce.com` | Production, Trailhead Playground and Developer Edition orgs. |\n | Custom My Domain base URL | Org with a custom domain. |\n \n4. Click **Get New Access Token** from the collection's **Authorization** tab.\n \n5. When prompted to do so, log in to your Salesforce org and allow access to \"Salesforce APIs Collection for Postman\".\n \n6. Copy the value of the `instance_url` field from the token details view.\n \n7. Click **Use Token**.\n \n8. Save the value that you copied in the `_endpoint` variable.\n \n9. Click **Save** and you're good to go!\n \n\n## Resources\n\nCheck out [the documentation](https://github.com/forcedotcom/postman-salesforce-apis) for videos and extra information on how to install, update and contribute to the collection.\n\nWe also have an [demo video](https://www.youtube.com/watch?v=W-IwW6RM4F0) on how to setup the collection.\n\n<img src=\"https://i3.ytimg.com/vi/W-IwW6RM4F0/maxresdefault.jpg\" width=\"80%\">\n\nReport issues and ask questions [here](https://github.com/forcedotcom/postman-salesforce-apis/issues).\n\n## Variables Reference\n\nThe collection relies on the following variables:\n\n| Variable | Description |\n| --- | --- |\n| `_endpoint` | Your Salesforce Org's instance URL. |\n| `url` | The URL used for logging in. Either: <br>\\- `https://test.salesforce.com` for sandboxes or Scratch orgs <br>\\- `https://login.salesforce.com` for production, Trailhead Playground and Developer Edition orgs <br>\\- your custom My Domain base URL. |\n| `version` | The Salesforce API version (e.g.: 50.0). |\n| `username` | Your username. |\n| `password` | Your password. |\n| `secretToken` | Your personal [security token](https://help.salesforce.com/articleView?id=user_security_token.htm). |\n| `clientId` | Connected App client Id. |\n| `clientSecret` | Connected App client secret. |\n| `redirectUrl` | Connected App redirect URL for OAuth 2.0. |\n| `initAccessToken` | Initial access token for dynamic Connected App registration. |\n| `site` | Community suffix when connecting with an Experience Cloud user. |\n\nOnly a few of these variables are mandatory. The authentication requests will automatically register and set extra \"private\" variables identified with a `_` prefix (e.g.: `_accessToken`, `_orgId`, `_userId`...).",
6
+ "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
7
+ "_exporter_id": "32907289",
8
+ "_collection_link": "https://go.postman.co/collection/12721794-67cb9baa-e0da-4986-957e-88d8734647e2?source=collection_link"
9
+ },
10
+ "auth": {
11
+ "type": "oauth2",
12
+ "oauth2": [
13
+ {
14
+ "key": "grant_type",
15
+ "value": "implicit",
16
+ "type": "string"
17
+ },
18
+ {
19
+ "key": "scope",
20
+ "value": "api",
21
+ "type": "string"
22
+ },
23
+ {
24
+ "key": "addTokenTo",
25
+ "value": "header",
26
+ "type": "string"
27
+ },
28
+ {
29
+ "key": "client_authentication",
30
+ "value": "body",
31
+ "type": "string"
32
+ },
33
+ {
34
+ "key": "password",
35
+ "value": "{{password}}",
36
+ "type": "string"
37
+ },
38
+ {
39
+ "key": "username",
40
+ "value": "{{username}}",
41
+ "type": "string"
42
+ },
43
+ {
44
+ "key": "challengeAlgorithm",
45
+ "value": "S256",
46
+ "type": "string"
47
+ },
48
+ {
49
+ "key": "clientSecret",
50
+ "value": "{{clientSecret}}",
51
+ "type": "string"
52
+ },
53
+ {
54
+ "key": "clientId",
55
+ "value": "{{clientId}}",
56
+ "type": "string"
57
+ },
58
+ {
59
+ "key": "accessTokenUrl",
60
+ "value": "{{url}}{{site}}/services/oauth2/token",
61
+ "type": "string"
62
+ },
63
+ {
64
+ "key": "authUrl",
65
+ "value": "{{url}}{{site}}/services/oauth2/authorize",
66
+ "type": "string"
67
+ },
68
+ {
69
+ "key": "tokenName",
70
+ "value": "access_token",
71
+ "type": "string"
72
+ },
73
+ {
74
+ "key": "useBrowser",
75
+ "value": true,
76
+ "type": "boolean"
77
+ }
78
+ ]
79
+ },
80
+ "variable": [
81
+ {
82
+ "key": "url",
83
+ "value": "https://login.salesforce.com"
84
+ },
85
+ {
86
+ "key": "version",
87
+ "value": "64.0"
88
+ },
89
+ {
90
+ "key": "username",
91
+ "value": ""
92
+ },
93
+ {
94
+ "key": "password",
95
+ "value": ""
96
+ },
97
+ {
98
+ "key": "secretToken",
99
+ "value": ""
100
+ },
101
+ {
102
+ "key": "clientId",
103
+ "value": "{{vault:salesforce-consumer-key}}"
104
+ },
105
+ {
106
+ "key": "clientSecret",
107
+ "value": ""
108
+ },
109
+ {
110
+ "key": "redirectUrl",
111
+ "value": ""
112
+ },
113
+ {
114
+ "key": "initAccessToken",
115
+ "value": ""
116
+ },
117
+ {
118
+ "key": "site",
119
+ "value": ""
120
+ },
121
+ {
122
+ "key": "_accessToken",
123
+ "value": ""
124
+ },
125
+ {
126
+ "key": "_endpoint",
127
+ "value": ""
128
+ },
129
+ {
130
+ "key": "_userId",
131
+ "value": ""
132
+ },
133
+ {
134
+ "key": "_appId",
135
+ "value": ""
136
+ },
137
+ {
138
+ "key": "_consumerId",
139
+ "value": ""
140
+ },
141
+ {
142
+ "key": "_tokenId",
143
+ "value": ""
144
+ },
145
+ {
146
+ "key": "_orgId",
147
+ "value": ""
148
+ },
149
+ {
150
+ "key": "_jobId",
151
+ "value": ""
152
+ },
153
+ {
154
+ "key": "webstoreId",
155
+ "value": ""
156
+ },
157
+ {
158
+ "key": "_deviceCode",
159
+ "value": ""
160
+ }
161
+ ],
162
+ "item": [
163
+ {
164
+ "name": "Configuration Loader API",
165
+ "request": {
166
+ "method": "PATCH",
167
+ "header": [
168
+ {
169
+ "key": "Content-Type",
170
+ "type": "text",
171
+ "value": "application/json"
172
+ }
173
+ ],
174
+ "body": {
175
+ "mode": "raw",
176
+ "raw": "",
177
+ "options": {
178
+ "raw": {
179
+ "language": "json"
180
+ }
181
+ }
182
+ },
183
+ "url": {
184
+ "raw": "{{_endpoint}}/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ConfigAPI.ConfigLoader&uid=",
185
+ "host": [
186
+ "{{_endpoint}}"
187
+ ],
188
+ "path": [
189
+ "services",
190
+ "apexrest",
191
+ "SBQQ",
192
+ "ServiceRouter"
193
+ ],
194
+ "query": [
195
+ {
196
+ "key": "loader",
197
+ "value": "SBQQ.ConfigAPI.ConfigLoader"
198
+ },
199
+ {
200
+ "key": "uid",
201
+ "value": ""
202
+ }
203
+ ]
204
+ },
205
+ "description": "The Configuration Loader API returns all the data for the product, including its product options and configuration model. When configuring a nested bundle, set the parentProductproperty to the parent product to inherit configuration attributes on the nested bundle.\nAvailable in: Salesforce CPQ Spring ’17 and later\n\nhttps://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_api_config_loader.htm"
206
+ },
207
+ "response": []
208
+ },
209
+ {
210
+ "name": "Configuration Load Rule Executor API",
211
+ "request": {
212
+ "method": "PATCH",
213
+ "header": [
214
+ {
215
+ "key": "Content-Type",
216
+ "type": "text",
217
+ "value": "application/json"
218
+ }
219
+ ],
220
+ "body": {
221
+ "mode": "raw",
222
+ "raw": "",
223
+ "options": {
224
+ "raw": {
225
+ "language": "json"
226
+ }
227
+ }
228
+ },
229
+ "url": {
230
+ "raw": "{{_endpoint}}/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ConfigAPI.LoadRuleExecutor&uid=",
231
+ "host": [
232
+ "{{_endpoint}}"
233
+ ],
234
+ "path": [
235
+ "services",
236
+ "apexrest",
237
+ "SBQQ",
238
+ "ServiceRouter"
239
+ ],
240
+ "query": [
241
+ {
242
+ "key": "loader",
243
+ "value": "SBQQ.ConfigAPI.LoadRuleExecutor"
244
+ },
245
+ {
246
+ "key": "uid",
247
+ "value": ""
248
+ }
249
+ ]
250
+ },
251
+ "description": "The Configuration Load Rule Executor API invokes all the load event product rules for the specified product. When configuring a nested bundle, set the parentProduct property to the parent product to inherit configuration attributes on the nested bundle.\nAvailable in: Salesforce CPQ Spring ’17 and later\n\nhttps://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_api_config_loadruleexecutor.htm"
252
+ },
253
+ "response": []
254
+ },
255
+ {
256
+ "name": "Configuration Validator API",
257
+ "request": {
258
+ "method": "PATCH",
259
+ "header": [
260
+ {
261
+ "key": "Content-Type",
262
+ "type": "text",
263
+ "value": "application/json"
264
+ }
265
+ ],
266
+ "body": {
267
+ "mode": "raw",
268
+ "raw": "",
269
+ "options": {
270
+ "raw": {
271
+ "language": "json"
272
+ }
273
+ }
274
+ },
275
+ "url": {
276
+ "raw": "{{_endpoint}}/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ConfigAPI.ConfigurationValidator&uid=",
277
+ "host": [
278
+ "{{_endpoint}}"
279
+ ],
280
+ "path": [
281
+ "services",
282
+ "apexrest",
283
+ "SBQQ",
284
+ "ServiceRouter"
285
+ ],
286
+ "query": [
287
+ {
288
+ "key": "loader",
289
+ "value": "SBQQ.ConfigAPI.ConfigurationValidator"
290
+ },
291
+ {
292
+ "key": "uid",
293
+ "value": ""
294
+ }
295
+ ]
296
+ },
297
+ "description": "The Configuration Validator API runs selection, validation, and alert product rules and configurator-scoped price rules against the input configuration model and returns an updated configuration model.\nAvailable in: Salesforce CPQ Spring ’17 and later\n\nhttps://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_api_config_validator.htm"
298
+ },
299
+ "response": []
300
+ },
301
+ {
302
+ "name": "Contract Amender API",
303
+ "request": {
304
+ "method": "PATCH",
305
+ "header": [
306
+ {
307
+ "key": "Content-Type",
308
+ "type": "text",
309
+ "value": "application/json"
310
+ }
311
+ ],
312
+ "body": {
313
+ "mode": "raw",
314
+ "raw": "",
315
+ "options": {
316
+ "raw": {
317
+ "language": "json"
318
+ }
319
+ }
320
+ },
321
+ "url": {
322
+ "raw": "{{_endpoint}}/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ContractManipulationAPI.ContractAmender&uid=",
323
+ "host": [
324
+ "{{_endpoint}}"
325
+ ],
326
+ "path": [
327
+ "services",
328
+ "apexrest",
329
+ "SBQQ",
330
+ "ServiceRouter"
331
+ ],
332
+ "query": [
333
+ {
334
+ "key": "loader",
335
+ "value": "SBQQ.ContractManipulationAPI.ContractAmender"
336
+ },
337
+ {
338
+ "key": "uid",
339
+ "value": ""
340
+ }
341
+ ]
342
+ },
343
+ "description": "Receive a CPQ contract ID in a request, and return quote data for an amendment quote.\nAvailable in: Salesforce CPQ Summer ’16 and later\nSpecial Access Rules: All of these user permissions are required.\nInsert and update on quote and opportunity objects\nRead on quote, opportunity, and product2 objects\nDelete on quote object\n\nhttps://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_api_contract_amender.htm"
344
+ },
345
+ "response": []
346
+ },
347
+ {
348
+ "name": "Contract Renewer API",
349
+ "request": {
350
+ "method": "PATCH",
351
+ "header": [
352
+ {
353
+ "key": "Content-Type",
354
+ "type": "text",
355
+ "value": "application/json"
356
+ }
357
+ ],
358
+ "body": {
359
+ "mode": "raw",
360
+ "raw": "{\n \"context\": {\n \"masterContractId\": null,\n \"renewedContracts\": [\n {\n \"attributes\": {\n \"type\": \"Contract\"\n },\n \"Id\": \"800540000006LLVAA2\"\n }\n ]\n }\n}",
361
+ "options": {
362
+ "raw": {
363
+ "language": "json"
364
+ }
365
+ }
366
+ },
367
+ "url": {
368
+ "raw": "{{_endpoint}}/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ContractManipulationAPI.ContractRenewer",
369
+ "host": [
370
+ "{{_endpoint}}"
371
+ ],
372
+ "path": [
373
+ "services",
374
+ "apexrest",
375
+ "SBQQ",
376
+ "ServiceRouter"
377
+ ],
378
+ "query": [
379
+ {
380
+ "key": "loader",
381
+ "value": "SBQQ.ContractManipulationAPI.ContractRenewer"
382
+ }
383
+ ]
384
+ },
385
+ "description": "Receive a CPQ contract in a request, and return quote data for one or more renewal quotes.\nAvailable in: Salesforce CPQ Summer ’16 and later\nSpecial Access Rules: All of these user permissions are required.\nInsert and update on quote and opportunity objects\nRead on quote, opportunity, and product2 objects\nDelete on quote object\n\nhttps://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_api_contract_renewer.htm"
386
+ },
387
+ "response": []
388
+ },
389
+ {
390
+ "name": "Save Quote API",
391
+ "request": {
392
+ "method": "POST",
393
+ "header": [
394
+ {
395
+ "key": "Content-Type",
396
+ "type": "text",
397
+ "value": "application/json"
398
+ }
399
+ ],
400
+ "body": {
401
+ "mode": "raw",
402
+ "raw": "",
403
+ "options": {
404
+ "raw": {
405
+ "language": "json"
406
+ }
407
+ }
408
+ },
409
+ "url": {
410
+ "raw": "{{_endpoint}}/services/apexrest/SBQQ/ServiceRouter",
411
+ "host": [
412
+ "{{_endpoint}}"
413
+ ],
414
+ "path": [
415
+ "services",
416
+ "apexrest",
417
+ "SBQQ",
418
+ "ServiceRouter"
419
+ ]
420
+ },
421
+ "description": "The Save Quote API saves a CPQ quote.\nAvailable in: Salesforce CPQ Summer ’16 and later\n\nhttps://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_quote_api_save_final.htm"
422
+ },
423
+ "response": []
424
+ },
425
+ {
426
+ "name": "Calculate Quote API",
427
+ "request": {
428
+ "method": "PATCH",
429
+ "header": [
430
+ {
431
+ "key": "Content-Type",
432
+ "type": "text",
433
+ "value": "application/json"
434
+ }
435
+ ],
436
+ "body": {
437
+ "mode": "raw",
438
+ "raw": "",
439
+ "options": {
440
+ "raw": {
441
+ "language": "json"
442
+ }
443
+ }
444
+ },
445
+ "url": {
446
+ "raw": "{{_endpoint}}/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteCalculator",
447
+ "host": [
448
+ "{{_endpoint}}"
449
+ ],
450
+ "path": [
451
+ "services",
452
+ "apexrest",
453
+ "SBQQ",
454
+ "ServiceRouter"
455
+ ],
456
+ "query": [
457
+ {
458
+ "key": "loader",
459
+ "value": "SBQQ.QuoteAPI.QuoteCalculator"
460
+ }
461
+ ]
462
+ },
463
+ "description": "The Calculate Quote API calculates the prices of a CPQ quote.\n\nhttps://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_quote_api_calculate_final.htm"
464
+ },
465
+ "response": []
466
+ },
467
+ {
468
+ "name": "Read Quote API",
469
+ "protocolProfileBehavior": {
470
+ "disableBodyPruning": true
471
+ },
472
+ "request": {
473
+ "method": "GET",
474
+ "header": [
475
+ {
476
+ "key": "Content-Type",
477
+ "type": "text",
478
+ "value": "application/json"
479
+ }
480
+ ],
481
+ "body": {
482
+ "mode": "raw",
483
+ "raw": "",
484
+ "options": {
485
+ "raw": {
486
+ "language": "json"
487
+ }
488
+ }
489
+ },
490
+ "url": {
491
+ "raw": "{{_endpoint}}/services/apexrest/SBQQ/ServiceRouter?reader=SBQQ.QuoteAPI.QuoteReader&uid=",
492
+ "host": [
493
+ "{{_endpoint}}"
494
+ ],
495
+ "path": [
496
+ "services",
497
+ "apexrest",
498
+ "SBQQ",
499
+ "ServiceRouter"
500
+ ],
501
+ "query": [
502
+ {
503
+ "key": "reader",
504
+ "value": "SBQQ.QuoteAPI.QuoteReader"
505
+ },
506
+ {
507
+ "key": "uid",
508
+ "value": ""
509
+ }
510
+ ]
511
+ },
512
+ "description": "The Read Quote API reads a quote from a CPQ quote ID.\nAvailable in: Salesforce CPQ Summer ’16 and later\n\nhttps://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_api_read_quote.htm"
513
+ },
514
+ "response": []
515
+ },
516
+ {
517
+ "name": "Validate Quote API",
518
+ "request": {
519
+ "method": "PATCH",
520
+ "header": [
521
+ {
522
+ "key": "Content-Type",
523
+ "type": "text",
524
+ "value": "application/json"
525
+ }
526
+ ],
527
+ "body": {
528
+ "mode": "raw",
529
+ "raw": "",
530
+ "options": {
531
+ "raw": {
532
+ "language": "json"
533
+ }
534
+ }
535
+ },
536
+ "url": {
537
+ "raw": "{{_endpoint}}/services/apexrest/SBQQ/ServiceRouter?loader=QuoteAPI.QuoteValidator",
538
+ "host": [
539
+ "{{_endpoint}}"
540
+ ],
541
+ "path": [
542
+ "services",
543
+ "apexrest",
544
+ "SBQQ",
545
+ "ServiceRouter"
546
+ ],
547
+ "query": [
548
+ {
549
+ "key": "loader",
550
+ "value": "QuoteAPI.QuoteValidator"
551
+ }
552
+ ]
553
+ },
554
+ "description": "Validate a CPQ quote and return any validation errors.\nAvailable in: Salesforce CPQ Winter ’19 and later\n\nhttps://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_api_validate_quote.htm"
555
+ },
556
+ "response": []
557
+ },
558
+ {
559
+ "name": "Add Products API",
560
+ "request": {
561
+ "method": "PATCH",
562
+ "header": [
563
+ {
564
+ "key": "Content-Type",
565
+ "type": "text",
566
+ "value": "application/json"
567
+ }
568
+ ],
569
+ "body": {
570
+ "mode": "raw",
571
+ "raw": "",
572
+ "options": {
573
+ "raw": {
574
+ "language": "json"
575
+ }
576
+ }
577
+ },
578
+ "url": {
579
+ "raw": "{{_endpoint}}/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteAPI.QuoteProductAdder",
580
+ "host": [
581
+ "{{_endpoint}}"
582
+ ],
583
+ "path": [
584
+ "services",
585
+ "apexrest",
586
+ "SBQQ",
587
+ "ServiceRouter"
588
+ ],
589
+ "query": [
590
+ {
591
+ "key": "loader",
592
+ "value": "SBQQ.QuoteAPI.QuoteProductAdder"
593
+ }
594
+ ]
595
+ },
596
+ "description": "Receive a CPQ quote, product collection, and quote group key in a request, and return a Quote model with all provided products added as quote lines.\nAvailable in: Salesforce CPQ Summer ’16 and later\n\nhttps://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_api_add_products.htm"
597
+ },
598
+ "response": []
599
+ },
600
+ {
601
+ "name": "Read Product API",
602
+ "request": {
603
+ "method": "PATCH",
604
+ "header": [
605
+ {
606
+ "key": "Content-Type",
607
+ "type": "text",
608
+ "value": "application/json"
609
+ }
610
+ ],
611
+ "body": {
612
+ "mode": "raw",
613
+ "raw": "{\"context\" : {\"pricebookId\": \"01sA0000000wuhg\", \"currencyCode\":\"USD\"}}",
614
+ "options": {
615
+ "raw": {
616
+ "language": "json"
617
+ }
618
+ }
619
+ },
620
+ "url": {
621
+ "raw": "{{_endpoint}}/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.ProductAPI.ProductLoader&uid=",
622
+ "host": [
623
+ "{{_endpoint}}"
624
+ ],
625
+ "path": [
626
+ "services",
627
+ "apexrest",
628
+ "SBQQ",
629
+ "ServiceRouter"
630
+ ],
631
+ "query": [
632
+ {
633
+ "key": "loader",
634
+ "value": "SBQQ.ProductAPI.ProductLoader"
635
+ },
636
+ {
637
+ "key": "uid",
638
+ "value": ""
639
+ }
640
+ ]
641
+ },
642
+ "description": "The Read Product API takes the request’s product ID, pricebook ID, and currency code and returns a Product model. The Product model loads the product from your catalog when the user requests it.\nAvailable in: Salesforce CPQ Summer ’16 and later\nSpecial Access Rules: Users must have read access to the product2 object.\n\nhttps://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_api_read_product.htm"
643
+ },
644
+ "response": []
645
+ },
646
+ {
647
+ "name": "Create and Save Quote Proposal API",
648
+ "request": {
649
+ "method": "POST",
650
+ "header": [
651
+ {
652
+ "key": "Content-Type",
653
+ "type": "text",
654
+ "value": "application/json"
655
+ }
656
+ ],
657
+ "body": {
658
+ "mode": "raw",
659
+ "raw": "{\n \"saver\": \"SBQQ.QuoteDocumentAPI.Save\",\n \"model\": {\n \"name\": \"test\",\n \"quoteId\": \"<SFDC_ID>\",\n \"templateId\": \"<SFDC_ID>\",\n \"outputFormat\": \"PDF\",\n \"language\": \"en_US\",\n \"paperSize\": \"Default\"\n }\n}",
660
+ "options": {
661
+ "raw": {
662
+ "language": "json"
663
+ }
664
+ }
665
+ },
666
+ "url": {
667
+ "raw": "{{_endpoint}}/services/apexrest/SBQQ/ServiceRouter?loader=QuoteDocumentAPI.SaveProposal",
668
+ "host": [
669
+ "{{_endpoint}}"
670
+ ],
671
+ "path": [
672
+ "services",
673
+ "apexrest",
674
+ "SBQQ",
675
+ "ServiceRouter"
676
+ ],
677
+ "query": [
678
+ {
679
+ "key": "loader",
680
+ "value": "QuoteDocumentAPI.SaveProposal"
681
+ }
682
+ ]
683
+ },
684
+ "description": "The Read Product API takes the request’s product ID, pricebook ID, and currency code and returns a Product model. The Product model loads the product from your catalog when the user requests it.\nAvailable in: Salesforce CPQ Summer ’16 and later\nSpecial Access Rules: Users must have read access to the product2 object.\n\nhttps://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_api_read_product.htm"
685
+ },
686
+ "response": []
687
+ },
688
+ {
689
+ "name": "Quote Term Reader API",
690
+ "request": {
691
+ "method": "PATCH",
692
+ "header": [
693
+ {
694
+ "key": "Content-Type",
695
+ "type": "text",
696
+ "value": "application/json"
697
+ }
698
+ ],
699
+ "body": {
700
+ "mode": "raw",
701
+ "raw": "{\n \"context\": {\n \"templateId\": \"a0v5C000000jTgr\",\n \"language\": \"es\"\n }\n}",
702
+ "options": {
703
+ "raw": {
704
+ "language": "json"
705
+ }
706
+ }
707
+ },
708
+ "url": {
709
+ "raw": "{{_endpoint}}/services/apexrest/SBQQ/ServiceRouter?loader=SBQQ.QuoteTermAPI.Load&uid=",
710
+ "host": [
711
+ "{{_endpoint}}"
712
+ ],
713
+ "path": [
714
+ "services",
715
+ "apexrest",
716
+ "SBQQ",
717
+ "ServiceRouter"
718
+ ],
719
+ "query": [
720
+ {
721
+ "key": "loader",
722
+ "value": "SBQQ.QuoteTermAPI.Load"
723
+ },
724
+ {
725
+ "key": "uid",
726
+ "value": ""
727
+ }
728
+ ]
729
+ },
730
+ "description": "The Read Product API takes the request’s product ID, pricebook ID, and currency code and returns a Product model. The Product model loads the product from your catalog when the user requests it.\nAvailable in: Salesforce CPQ Summer ’16 and later\nSpecial Access Rules: Users must have read access to the product2 object.\n\nhttps://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_api_read_product.htm"
731
+ },
732
+ "response": []
733
+ },
734
+ {
735
+ "name": "Generate Quote Document API",
736
+ "request": {
737
+ "method": "POST",
738
+ "header": [
739
+ {
740
+ "key": "Content-Type",
741
+ "type": "text",
742
+ "value": "application/json"
743
+ }
744
+ ],
745
+ "body": {
746
+ "mode": "raw",
747
+ "raw": "{\n \"saver\": \"SBQQ.QuoteDocumentAPI.Save\",\n \"model\": {\n \"name\": \"test\",\n \"quoteId\": \"<SFDC_ID>\",\n \"templateId\": \"<SFDC_ID>\",\n \"outputFormat\": \"PDF\",\n \"language\": \"en_US\",\n \"paperSize\": \"Default\"\n }\n}",
748
+ "options": {
749
+ "raw": {
750
+ "language": "json"
751
+ }
752
+ }
753
+ },
754
+ "url": {
755
+ "raw": "{{_endpoint}}/services/apexrest/SBQQ/ServiceRouter?loader=QuoteDocumentAPI.SaveProposal",
756
+ "host": [
757
+ "{{_endpoint}}"
758
+ ],
759
+ "path": [
760
+ "services",
761
+ "apexrest",
762
+ "SBQQ",
763
+ "ServiceRouter"
764
+ ],
765
+ "query": [
766
+ {
767
+ "key": "loader",
768
+ "value": "QuoteDocumentAPI.SaveProposal"
769
+ }
770
+ ]
771
+ },
772
+ "description": "Creates and saves a CPQ quote document.\nAvailable in: Salesforce CPQ Winter ’19 and later\n\nhttps://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_api_generate_proposal.htm"
773
+ },
774
+ "response": []
775
+ },
776
+ {
777
+ "name": "Corporate Member Enrollments",
778
+ "request": {
779
+ "method": "POST",
780
+ "header": [],
781
+ "body": {
782
+ "mode": "raw",
783
+ "raw": "{\n \"enrollmentDate\" : \"2021-01-01T05:05:05\",\n \"membershipNumber\" : \"Member123\",\n \"associatedAccountDetails\" : {\n \"name\" : \"Name1\",\n \"phone\" : \"908989898\",\n \"website\" : \"www.ab.com\",\n \"allowDuplicateRecords\" : \"false\"\n },\n \"memberStatus\" : \"Active\",\n \"createTransactionJournals\" : \"true\"\n}",
784
+ "options": {
785
+ "raw": {
786
+ "language": "json"
787
+ }
788
+ }
789
+ },
790
+ "url": {
791
+ "raw": "{{_endpoint}}/services/data/v{{version}}/loyalty-programs/:loyaltyProgramName/corporate-member-enrollments",
792
+ "host": [
793
+ "{{_endpoint}}"
794
+ ],
795
+ "path": [
796
+ "services",
797
+ "data",
798
+ "v{{version}}",
799
+ "loyalty-programs",
800
+ ":loyaltyProgramName",
801
+ "corporate-member-enrollments"
802
+ ],
803
+ "variable": [
804
+ {
805
+ "key": "loyaltyProgramName",
806
+ "value": ""
807
+ }
808
+ ]
809
+ },
810
+ "description": "Standard Documentation:\n\n[https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_enroll_corporate_member.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_enroll_corporate_member.htm)"
811
+ },
812
+ "response": [
813
+ {
814
+ "name": "Corporate Member Enrollments",
815
+ "originalRequest": {
816
+ "method": "POST",
817
+ "header": [
818
+ {
819
+ "key": "Authorization",
820
+ "value": "Bearer {{accessToken}}"
821
+ }
822
+ ],
823
+ "body": {
824
+ "mode": "raw",
825
+ "raw": "{\n \"enrollmentDate\" : \"2021-01-01T05:05:05\",\n \"membershipNumber\" : \"Member123\",\n \"associatedAccountDetails\" : {\n \"name\" : \"Name1\",\n \"phone\" : \"908989898\",\n \"website\" : \"www.ab.com\",\n \"allowDuplicateRecords\" : \"false\"\n },\n \"memberStatus\" : \"Active\",\n \"createTransactionJournals\" : \"true\"\n}",
826
+ "options": {
827
+ "raw": {
828
+ "language": "json"
829
+ }
830
+ }
831
+ },
832
+ "url": {
833
+ "raw": "{{_endpoint}}/services/data/v{{version}}/loyalty-programs/:loyaltyProgramName/corporate-member-enrollments",
834
+ "host": [
835
+ "{{_endpoint}}"
836
+ ],
837
+ "path": [
838
+ "services",
839
+ "data",
840
+ "v{{version}}",
841
+ "loyalty-programs",
842
+ ":loyaltyProgramName",
843
+ "corporate-member-enrollments"
844
+ ],
845
+ "variable": [
846
+ {
847
+ "key": "loyaltyProgramName",
848
+ "value": "NTO Insider"
849
+ }
850
+ ]
851
+ }
852
+ },
853
+ "status": "Created",
854
+ "code": 201,
855
+ "_postman_previewlanguage": "json",
856
+ "header": [
857
+ {
858
+ "key": "Date",
859
+ "value": "Wed, 22 May 2024 15:35:25 GMT"
860
+ },
861
+ {
862
+ "key": "Strict-Transport-Security",
863
+ "value": "max-age=63072000; includeSubDomains"
864
+ },
865
+ {
866
+ "key": "X-Content-Type-Options",
867
+ "value": "nosniff"
868
+ },
869
+ {
870
+ "key": "X-Robots-Tag",
871
+ "value": "none"
872
+ },
873
+ {
874
+ "key": "Cache-Control",
875
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
876
+ },
877
+ {
878
+ "key": "Content-Type",
879
+ "value": "application/json;charset=UTF-8"
880
+ },
881
+ {
882
+ "key": "Vary",
883
+ "value": "Accept-Encoding"
884
+ },
885
+ {
886
+ "key": "Content-Encoding",
887
+ "value": "gzip"
888
+ },
889
+ {
890
+ "key": "Transfer-Encoding",
891
+ "value": "chunked"
892
+ }
893
+ ],
894
+ "cookie": [],
895
+ "body": "{\n \"accountId\": \"001J8000003MaJL\",\n \"loyaltyProgramMemberId\": \"0lMJ8000000CaRH\",\n \"loyaltyProgramName\": \"NTO Insider\",\n \"membershipNumber\": \"Member123\",\n \"transactionJournals\": [\n {\n \"activityDate\": \"2021-01-01T04:05:05.000Z\",\n \"journalSubType\": \"Member Enrollment\",\n \"journalType\": \"Accrual\",\n \"loyaltyProgram\": \"NTO Insider\",\n \"loyaltyProgramMember\": \"Member123\",\n \"referredMember\": null,\n \"status\": \"Processed\",\n \"transactionJournalId\": \"0lVJ8000000GmaE\"\n }\n ]\n}"
896
+ }
897
+ ]
898
+ },
899
+ {
900
+ "name": "Individual Member Enrollments",
901
+ "request": {
902
+ "method": "POST",
903
+ "header": [],
904
+ "body": {
905
+ "mode": "raw",
906
+ "raw": "{\n \"enrollmentDate\" : \"2021-01-01T00:00:00\",\n \"membershipNumber\" : \"Member1\",\n \"associatedContactDetails\" : {\n \"firstName\" : \"Name1\",\n \"lastName\" : \"Name2\",\n \"email\" : \"ab@email.com\",\n \"allowDuplicateRecords\" : \"false\"\n },\n\n \"memberStatus\" : \"Active\",\n \"createTransactionJournals\" : \"true\",\n \"transactionJournalStatementFrequency\" : \"Monthly\",\n \"transactionJournalStatementMethod\" : \"Mail\",\n \"enrollmentChannel\" : \"Email\",\n \"canReceivePromotions\": \"true\",\n \"canReceivePartnerPromotions\" : \"true\",\n \"membershipEndDate\" : \"2022-01-01T00:00:00\"\n}",
907
+ "options": {
908
+ "raw": {
909
+ "language": "json"
910
+ }
911
+ }
912
+ },
913
+ "url": {
914
+ "raw": "{{_endpoint}}/services/data/v{{version}}/loyalty-programs/:loyaltyProgramName/individual-member-enrollments",
915
+ "host": [
916
+ "{{_endpoint}}"
917
+ ],
918
+ "path": [
919
+ "services",
920
+ "data",
921
+ "v{{version}}",
922
+ "loyalty-programs",
923
+ ":loyaltyProgramName",
924
+ "individual-member-enrollments"
925
+ ],
926
+ "query": [
927
+ {
928
+ "key": "",
929
+ "value": "",
930
+ "disabled": true
931
+ }
932
+ ],
933
+ "variable": [
934
+ {
935
+ "key": "loyaltyProgramName",
936
+ "value": ""
937
+ }
938
+ ]
939
+ },
940
+ "description": "Standard Documentation:\n\n[https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_enroll_individual_member.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_enroll_individual_member.htm)"
941
+ },
942
+ "response": [
943
+ {
944
+ "name": "Individual Member Enrollments",
945
+ "originalRequest": {
946
+ "method": "POST",
947
+ "header": [
948
+ {
949
+ "key": "Authorization",
950
+ "value": "Bearer {{accessToken}}"
951
+ }
952
+ ],
953
+ "body": {
954
+ "mode": "raw",
955
+ "raw": "{\n \"enrollmentDate\" : \"2021-01-01T00:00:00\",\n \"membershipNumber\" : \"Member1\",\n \"associatedContactDetails\" : {\n \"firstName\" : \"Name1\",\n \"lastName\" : \"Name2\",\n \"email\" : \"ab@email.com\",\n \"allowDuplicateRecords\" : \"false\"\n },\n\n \"memberStatus\" : \"Active\",\n \"createTransactionJournals\" : \"true\",\n \"transactionJournalStatementFrequency\" : \"Monthly\",\n \"transactionJournalStatementMethod\" : \"Mail\",\n \"enrollmentChannel\" : \"Email\",\n \"canReceivePromotions\": \"true\",\n \"canReceivePartnerPromotions\" : \"true\",\n \"membershipEndDate\" : \"2022-01-01T00:00:00\"\n}",
956
+ "options": {
957
+ "raw": {
958
+ "language": "json"
959
+ }
960
+ }
961
+ },
962
+ "url": {
963
+ "raw": "{{_endpoint}}/services/data/v{{version}}/loyalty-programs/:loyaltyProgramName/individual-member-enrollments",
964
+ "host": [
965
+ "{{_endpoint}}"
966
+ ],
967
+ "path": [
968
+ "services",
969
+ "data",
970
+ "v{{version}}",
971
+ "loyalty-programs",
972
+ ":loyaltyProgramName",
973
+ "individual-member-enrollments"
974
+ ],
975
+ "query": [
976
+ {
977
+ "key": "",
978
+ "value": null,
979
+ "disabled": true
980
+ }
981
+ ],
982
+ "variable": [
983
+ {
984
+ "key": "loyaltyProgramName",
985
+ "value": "NTO Insider"
986
+ }
987
+ ]
988
+ }
989
+ },
990
+ "status": "Created",
991
+ "code": 201,
992
+ "_postman_previewlanguage": "json",
993
+ "header": [
994
+ {
995
+ "key": "Date",
996
+ "value": "Wed, 22 May 2024 15:39:01 GMT"
997
+ },
998
+ {
999
+ "key": "Strict-Transport-Security",
1000
+ "value": "max-age=63072000; includeSubDomains"
1001
+ },
1002
+ {
1003
+ "key": "X-Content-Type-Options",
1004
+ "value": "nosniff"
1005
+ },
1006
+ {
1007
+ "key": "X-Robots-Tag",
1008
+ "value": "none"
1009
+ },
1010
+ {
1011
+ "key": "Cache-Control",
1012
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1013
+ },
1014
+ {
1015
+ "key": "Content-Type",
1016
+ "value": "application/json;charset=UTF-8"
1017
+ },
1018
+ {
1019
+ "key": "Vary",
1020
+ "value": "Accept-Encoding"
1021
+ },
1022
+ {
1023
+ "key": "Content-Encoding",
1024
+ "value": "gzip"
1025
+ },
1026
+ {
1027
+ "key": "Transfer-Encoding",
1028
+ "value": "chunked"
1029
+ }
1030
+ ],
1031
+ "cookie": [],
1032
+ "body": "{\n \"contactId\": \"003J8000002Yu0Z\",\n \"loyaltyProgramMemberId\": \"0lMJ8000000CaRM\",\n \"loyaltyProgramName\": \"NTO Insider\",\n \"membershipNumber\": \"Member1\",\n \"transactionJournals\": [\n {\n \"activityDate\": \"2020-12-31T23:00:00.000Z\",\n \"journalSubType\": \"Member Enrollment\",\n \"journalType\": \"Accrual\",\n \"loyaltyProgram\": \"NTO Insider\",\n \"loyaltyProgramMember\": \"Member1\",\n \"referredMember\": null,\n \"status\": \"Processed\",\n \"transactionJournalId\": \"0lVJ8000000GmaJ\"\n }\n ]\n}"
1033
+ }
1034
+ ]
1035
+ },
1036
+ {
1037
+ "name": "Member Benefits",
1038
+ "protocolProfileBehavior": {
1039
+ "disableBodyPruning": true
1040
+ },
1041
+ "request": {
1042
+ "method": "GET",
1043
+ "header": [],
1044
+ "body": {
1045
+ "mode": "raw",
1046
+ "raw": "",
1047
+ "options": {
1048
+ "raw": {
1049
+ "language": "json"
1050
+ }
1051
+ }
1052
+ },
1053
+ "url": {
1054
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/member/:memberId/memberbenefits",
1055
+ "host": [
1056
+ "{{_endpoint}}"
1057
+ ],
1058
+ "path": [
1059
+ "services",
1060
+ "data",
1061
+ "v{{version}}",
1062
+ "connect",
1063
+ "loyalty",
1064
+ "member",
1065
+ ":memberId",
1066
+ "memberbenefits"
1067
+ ],
1068
+ "variable": [
1069
+ {
1070
+ "key": "memberId",
1071
+ "value": ""
1072
+ }
1073
+ ]
1074
+ },
1075
+ "description": "Standard Documentation:\n\n[https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_member_benefits.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_member_benefits.htm)"
1076
+ },
1077
+ "response": [
1078
+ {
1079
+ "name": "Member Benefits",
1080
+ "originalRequest": {
1081
+ "method": "GET",
1082
+ "header": [
1083
+ {
1084
+ "key": "Authorization",
1085
+ "value": "Bearer {{accessToken}}"
1086
+ }
1087
+ ],
1088
+ "body": {
1089
+ "mode": "raw",
1090
+ "raw": "",
1091
+ "options": {
1092
+ "raw": {
1093
+ "language": "json"
1094
+ }
1095
+ }
1096
+ },
1097
+ "url": {
1098
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/member/:memberId/memberbenefits",
1099
+ "host": [
1100
+ "{{_endpoint}}"
1101
+ ],
1102
+ "path": [
1103
+ "services",
1104
+ "data",
1105
+ "v{{version}}",
1106
+ "connect",
1107
+ "loyalty",
1108
+ "member",
1109
+ ":memberId",
1110
+ "memberbenefits"
1111
+ ],
1112
+ "variable": [
1113
+ {
1114
+ "key": "memberId",
1115
+ "value": "0lMJ8000000CaRMMA0"
1116
+ }
1117
+ ]
1118
+ }
1119
+ },
1120
+ "status": "OK",
1121
+ "code": 200,
1122
+ "_postman_previewlanguage": "json",
1123
+ "header": [
1124
+ {
1125
+ "key": "Date",
1126
+ "value": "Wed, 22 May 2024 16:11:06 GMT"
1127
+ },
1128
+ {
1129
+ "key": "Strict-Transport-Security",
1130
+ "value": "max-age=63072000; includeSubDomains"
1131
+ },
1132
+ {
1133
+ "key": "X-Content-Type-Options",
1134
+ "value": "nosniff"
1135
+ },
1136
+ {
1137
+ "key": "X-Robots-Tag",
1138
+ "value": "none"
1139
+ },
1140
+ {
1141
+ "key": "Cache-Control",
1142
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1143
+ },
1144
+ {
1145
+ "key": "Content-Type",
1146
+ "value": "application/json;charset=UTF-8"
1147
+ },
1148
+ {
1149
+ "key": "Vary",
1150
+ "value": "Accept-Encoding"
1151
+ },
1152
+ {
1153
+ "key": "Content-Encoding",
1154
+ "value": "gzip"
1155
+ },
1156
+ {
1157
+ "key": "Transfer-Encoding",
1158
+ "value": "chunked"
1159
+ }
1160
+ ],
1161
+ "cookie": [],
1162
+ "body": "{\n \"memberBenefits\": [\n {\n \"benefitId\": \"0jiJ80000008OIFIA2\",\n \"benefitName\": \"Free Shipping\",\n \"benefitTypeId\": \"0jhJ80000008OI5IAM\",\n \"benefitTypeName\": \"Shipping\",\n \"createdRecordId\": null,\n \"createdRecordName\": null,\n \"description\": null,\n \"endDate\": null,\n \"isActive\": true,\n \"memberBenefitStatus\": null,\n \"startDate\": null\n },\n {\n \"benefitId\": \"0jiJ80000008OI5IAM\",\n \"benefitName\": \"5% of Discount\",\n \"benefitTypeId\": \"0jhJ80000008OIAIA2\",\n \"benefitTypeName\": \"Discount Percentage\",\n \"createdRecordId\": null,\n \"createdRecordName\": null,\n \"description\": null,\n \"endDate\": null,\n \"isActive\": true,\n \"memberBenefitStatus\": null,\n \"startDate\": null\n }\n ]\n}"
1163
+ }
1164
+ ]
1165
+ },
1166
+ {
1167
+ "name": "Member Profile",
1168
+ "protocolProfileBehavior": {
1169
+ "disableBodyPruning": true
1170
+ },
1171
+ "request": {
1172
+ "method": "GET",
1173
+ "header": [],
1174
+ "body": {
1175
+ "mode": "raw",
1176
+ "raw": "",
1177
+ "options": {
1178
+ "raw": {
1179
+ "language": "json"
1180
+ }
1181
+ }
1182
+ },
1183
+ "url": {
1184
+ "raw": "{{_endpoint}}/services/data/v{{version}}/loyalty-programs/:loyaltyProgramName/members?memberId=&membershipNumber=&programCurrencyName=",
1185
+ "host": [
1186
+ "{{_endpoint}}"
1187
+ ],
1188
+ "path": [
1189
+ "services",
1190
+ "data",
1191
+ "v{{version}}",
1192
+ "loyalty-programs",
1193
+ ":loyaltyProgramName",
1194
+ "members"
1195
+ ],
1196
+ "query": [
1197
+ {
1198
+ "key": "memberId",
1199
+ "value": "",
1200
+ "description": "The ID of the loyalty program member."
1201
+ },
1202
+ {
1203
+ "key": "membershipNumber",
1204
+ "value": "",
1205
+ "description": "The membership number of the loyalty program member."
1206
+ },
1207
+ {
1208
+ "key": "programCurrencyName",
1209
+ "value": "",
1210
+ "description": "The name of the loyalty program currency associated with the member.\nUse this parameter to get the details of the member’s points-related information for a specific currency."
1211
+ }
1212
+ ],
1213
+ "variable": [
1214
+ {
1215
+ "key": "loyaltyProgramName",
1216
+ "value": ""
1217
+ }
1218
+ ]
1219
+ },
1220
+ "description": "Standard Documentation:\n\n[https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_member_profile.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_member_profile.htm)"
1221
+ },
1222
+ "response": [
1223
+ {
1224
+ "name": "Member Profile",
1225
+ "originalRequest": {
1226
+ "method": "GET",
1227
+ "header": [
1228
+ {
1229
+ "key": "Authorization",
1230
+ "value": "Bearer {{accessToken}}"
1231
+ }
1232
+ ],
1233
+ "body": {
1234
+ "mode": "raw",
1235
+ "raw": "",
1236
+ "options": {
1237
+ "raw": {
1238
+ "language": "json"
1239
+ }
1240
+ }
1241
+ },
1242
+ "url": {
1243
+ "raw": "{{_endpoint}}/services/data/v{{version}}/loyalty-programs/:loyaltyProgramName/members?memberId=0lMJ8000000CaRMMA0&membershipNumber=Member1&programCurrencyName=NTO Qualifying Points",
1244
+ "host": [
1245
+ "{{_endpoint}}"
1246
+ ],
1247
+ "path": [
1248
+ "services",
1249
+ "data",
1250
+ "v{{version}}",
1251
+ "loyalty-programs",
1252
+ ":loyaltyProgramName",
1253
+ "members"
1254
+ ],
1255
+ "query": [
1256
+ {
1257
+ "key": "memberId",
1258
+ "value": "0lMJ8000000CaRMMA0",
1259
+ "description": "The ID of the loyalty program member."
1260
+ },
1261
+ {
1262
+ "key": "membershipNumber",
1263
+ "value": "Member1",
1264
+ "description": "The membership number of the loyalty program member."
1265
+ },
1266
+ {
1267
+ "key": "programCurrencyName",
1268
+ "value": "NTO Qualifying Points",
1269
+ "description": "The name of the loyalty program currency associated with the member.\nUse this parameter to get the details of the member’s points-related information for a specific currency."
1270
+ }
1271
+ ],
1272
+ "variable": [
1273
+ {
1274
+ "key": "loyaltyProgramName",
1275
+ "value": "NTO Insider"
1276
+ }
1277
+ ]
1278
+ }
1279
+ },
1280
+ "status": "OK",
1281
+ "code": 200,
1282
+ "_postman_previewlanguage": "json",
1283
+ "header": [
1284
+ {
1285
+ "key": "Date",
1286
+ "value": "Wed, 22 May 2024 16:16:23 GMT"
1287
+ },
1288
+ {
1289
+ "key": "Strict-Transport-Security",
1290
+ "value": "max-age=63072000; includeSubDomains"
1291
+ },
1292
+ {
1293
+ "key": "X-Content-Type-Options",
1294
+ "value": "nosniff"
1295
+ },
1296
+ {
1297
+ "key": "X-Robots-Tag",
1298
+ "value": "none"
1299
+ },
1300
+ {
1301
+ "key": "Cache-Control",
1302
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1303
+ },
1304
+ {
1305
+ "key": "Content-Type",
1306
+ "value": "application/json;charset=UTF-8"
1307
+ },
1308
+ {
1309
+ "key": "Vary",
1310
+ "value": "Accept-Encoding"
1311
+ },
1312
+ {
1313
+ "key": "Content-Encoding",
1314
+ "value": "gzip"
1315
+ },
1316
+ {
1317
+ "key": "Transfer-Encoding",
1318
+ "value": "chunked"
1319
+ }
1320
+ ],
1321
+ "cookie": [],
1322
+ "body": "{\n \"additionalLoyaltyProgramMemberFields\": {},\n \"associatedAccount\": null,\n \"associatedContact\": {\n \"contactId\": \"003J8000002Yu0ZIAS\",\n \"email\": \"ab@email.com\",\n \"firstName\": \"Name1\",\n \"lastName\": \"Name2\"\n },\n \"canReceivePartnerPromotions\": true,\n \"canReceivePromotions\": true,\n \"enrollmentChannel\": \"Email\",\n \"enrollmentDate\": \"2021-01-01\",\n \"groupCreatedByMember\": null,\n \"groupName\": null,\n \"lastActivityDate\": null,\n \"loyaltyProgramMemberId\": \"0lMJ8000000CaRMMA0\",\n \"loyaltyProgramName\": \"NTO Insider\",\n \"memberCurrencies\": [\n {\n \"additionalLoyaltyMemberCurrencyFields\": {\n \"Level_Before_Reset__c\": null\n },\n \"escrowPointsBalance\": 0,\n \"expirablePoints\": 0,\n \"lastAccrualProcessedDate\": null,\n \"lastEscrowProcessedDate\": null,\n \"lastExpirationProcessRunDate\": null,\n \"lastPointsAggregationDate\": null,\n \"lastPointsResetDate\": null,\n \"loyaltyMemberCurrencyName\": \"NTO Qualifying Points\",\n \"loyaltyProgramCurrencyId\": \"0lcJ8000000CaR7IAK\",\n \"loyaltyProgramCurrencyName\": null,\n \"memberCurrencyId\": \"0lzJ8000000CaRMIA0\",\n \"nextQualifyingPointsResetDate\": \"2024-12-31\",\n \"pointsBalance\": 0,\n \"qualifyingPointsBalanceBeforeReset\": 0,\n \"totalEscrowPointsAccrued\": 0,\n \"totalEscrowRolloverPoints\": 0,\n \"totalPointsAccrued\": 0,\n \"totalPointsExpired\": 0,\n \"totalPointsRedeemed\": 0\n }\n ],\n \"memberStatus\": \"Active\",\n \"memberTiers\": [\n {\n \"additionalLoyaltyMemberTierFields\": {},\n \"areTierBenefitsAssigned\": false,\n \"loyaltyMemberTierId\": \"0lyJ8000000CaRMIA0\",\n \"loyaltyMemberTierName\": \"Bronze\",\n \"tierChangeReason\": null,\n \"tierChangeReasonType\": null,\n \"tierEffectiveDate\": \"2021-01-01\",\n \"tierExpirationDate\": null,\n \"tierGroupId\": \"0ltJ8000000CaR8IAK\",\n \"tierGroupName\": null,\n \"tierId\": \"0lgJ80000008OI5IAM\",\n \"tierSequenceNumber\": 10\n }\n ],\n \"memberType\": \"Individual\",\n \"membershipEndDate\": \"2022-01-01\",\n \"membershipLastRenewalDate\": null,\n \"membershipNumber\": \"Member1\",\n \"referredBy\": null,\n \"relatedCorporateMembershipNumber\": null,\n \"transactionJournalStatementFrequency\": \"Monthly\",\n \"transactionJournalStatementLastGeneratedDate\": null,\n \"transactionJournalStatementMethod\": \"Mail\"\n}"
1323
+ }
1324
+ ]
1325
+ },
1326
+ {
1327
+ "name": "Redeem Voucher",
1328
+ "request": {
1329
+ "method": "POST",
1330
+ "header": [],
1331
+ "body": {
1332
+ "mode": "raw",
1333
+ "raw": "{\n \"currencyIsoCode\" : \"EUR\",\n \"redeemAmount\" : 1.5\n}",
1334
+ "options": {
1335
+ "raw": {
1336
+ "language": "json"
1337
+ }
1338
+ }
1339
+ },
1340
+ "url": {
1341
+ "raw": "{{_endpoint}}/services/data/v{{version}}/loyalty/programs/:loyaltyProgramName/members/:membershipNumber/vouchers/:voucherCode/redeem?voucherNumber=",
1342
+ "host": [
1343
+ "{{_endpoint}}"
1344
+ ],
1345
+ "path": [
1346
+ "services",
1347
+ "data",
1348
+ "v{{version}}",
1349
+ "loyalty",
1350
+ "programs",
1351
+ ":loyaltyProgramName",
1352
+ "members",
1353
+ ":membershipNumber",
1354
+ "vouchers",
1355
+ ":voucherCode",
1356
+ "redeem"
1357
+ ],
1358
+ "query": [
1359
+ {
1360
+ "key": "voucherNumber",
1361
+ "value": ""
1362
+ }
1363
+ ],
1364
+ "variable": [
1365
+ {
1366
+ "key": "loyaltyProgramName",
1367
+ "value": "",
1368
+ "description": "The loyalty program name."
1369
+ },
1370
+ {
1371
+ "key": "membershipNumber",
1372
+ "value": "",
1373
+ "description": "The loyalty program membership number."
1374
+ },
1375
+ {
1376
+ "key": "voucherCode",
1377
+ "value": "",
1378
+ "description": "The voucher code to be redeemed."
1379
+ }
1380
+ ]
1381
+ },
1382
+ "description": "Standard Documentation:\n\n[https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_redeem_voucher.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_redeem_voucher.htm)"
1383
+ },
1384
+ "response": [
1385
+ {
1386
+ "name": "Redeem Voucher",
1387
+ "originalRequest": {
1388
+ "method": "POST",
1389
+ "header": [
1390
+ {
1391
+ "key": "Authorization",
1392
+ "value": "Bearer {{accessToken}}"
1393
+ }
1394
+ ],
1395
+ "body": {
1396
+ "mode": "raw",
1397
+ "raw": "{\n \"currencyIsoCode\" : \"EUR\",\n \"redeemAmount\" : 1.5\n}",
1398
+ "options": {
1399
+ "raw": {
1400
+ "language": "json"
1401
+ }
1402
+ }
1403
+ },
1404
+ "url": {
1405
+ "raw": "{{_endpoint}}/services/data/v{{version}}/loyalty/programs/:loyaltyProgramName/members/:membershipNumber/vouchers/:voucherCode/redeem?voucherNumber=00000018",
1406
+ "host": [
1407
+ "{{_endpoint}}"
1408
+ ],
1409
+ "path": [
1410
+ "services",
1411
+ "data",
1412
+ "v{{version}}",
1413
+ "loyalty",
1414
+ "programs",
1415
+ ":loyaltyProgramName",
1416
+ "members",
1417
+ ":membershipNumber",
1418
+ "vouchers",
1419
+ ":voucherCode",
1420
+ "redeem"
1421
+ ],
1422
+ "query": [
1423
+ {
1424
+ "key": "voucherNumber",
1425
+ "value": "00000018"
1426
+ }
1427
+ ],
1428
+ "variable": [
1429
+ {
1430
+ "key": "loyaltyProgramName",
1431
+ "value": "NTO Insider",
1432
+ "description": "The loyalty program name."
1433
+ },
1434
+ {
1435
+ "key": "membershipNumber",
1436
+ "value": "Member123",
1437
+ "description": "The loyalty program membership number."
1438
+ },
1439
+ {
1440
+ "key": "voucherCode",
1441
+ "value": "44KYEWZ5",
1442
+ "description": "The voucher code to be redeemed."
1443
+ }
1444
+ ]
1445
+ }
1446
+ },
1447
+ "status": "Created",
1448
+ "code": 201,
1449
+ "_postman_previewlanguage": "json",
1450
+ "header": [
1451
+ {
1452
+ "key": "Date",
1453
+ "value": "Mon, 27 May 2024 19:35:17 GMT"
1454
+ },
1455
+ {
1456
+ "key": "Strict-Transport-Security",
1457
+ "value": "max-age=63072000; includeSubDomains"
1458
+ },
1459
+ {
1460
+ "key": "X-Content-Type-Options",
1461
+ "value": "nosniff"
1462
+ },
1463
+ {
1464
+ "key": "X-Robots-Tag",
1465
+ "value": "none"
1466
+ },
1467
+ {
1468
+ "key": "Cache-Control",
1469
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1470
+ },
1471
+ {
1472
+ "key": "Content-Type",
1473
+ "value": "application/json;charset=UTF-8"
1474
+ },
1475
+ {
1476
+ "key": "Vary",
1477
+ "value": "Accept-Encoding"
1478
+ },
1479
+ {
1480
+ "key": "Content-Encoding",
1481
+ "value": "gzip"
1482
+ },
1483
+ {
1484
+ "key": "Transfer-Encoding",
1485
+ "value": "chunked"
1486
+ }
1487
+ ],
1488
+ "cookie": [],
1489
+ "body": "{\n \"currencyIsoCode\": \"EUR\",\n \"remainingAmount\": 3.5\n}"
1490
+ }
1491
+ ]
1492
+ },
1493
+ {
1494
+ "name": "Transaction History",
1495
+ "request": {
1496
+ "method": "POST",
1497
+ "header": [],
1498
+ "body": {
1499
+ "mode": "raw",
1500
+ "raw": "{\n \"membershipNumber\":\"Member1\",\n \"journalType\":\"Accrual\",\n \"journalSubType\":\"Social\",\n \"periodStartDate\":\"2022-01-27T00:00:00Z\",\n \"periodEndDate\":\"2022-11-27T00:00:00Z\"\n}",
1501
+ "options": {
1502
+ "raw": {
1503
+ "language": "json"
1504
+ }
1505
+ }
1506
+ },
1507
+ "url": {
1508
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/transaction-history?page=",
1509
+ "host": [
1510
+ "{{_endpoint}}"
1511
+ ],
1512
+ "path": [
1513
+ "services",
1514
+ "data",
1515
+ "v{{version}}",
1516
+ "connect",
1517
+ "loyalty",
1518
+ "programs",
1519
+ ":loyaltyProgramName",
1520
+ "transaction-history"
1521
+ ],
1522
+ "query": [
1523
+ {
1524
+ "key": "page",
1525
+ "value": ""
1526
+ }
1527
+ ],
1528
+ "variable": [
1529
+ {
1530
+ "key": "loyaltyProgramName",
1531
+ "value": ""
1532
+ }
1533
+ ]
1534
+ },
1535
+ "description": "Standard Documentation:\n\n[https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_transaction_history.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_transaction_history.htm)"
1536
+ },
1537
+ "response": [
1538
+ {
1539
+ "name": "Transaction History",
1540
+ "originalRequest": {
1541
+ "method": "POST",
1542
+ "header": [
1543
+ {
1544
+ "key": "Authorization",
1545
+ "value": "Bearer {{accessToken}}"
1546
+ }
1547
+ ],
1548
+ "body": {
1549
+ "mode": "raw",
1550
+ "raw": "{\n \"membershipNumber\":\"Member1\",\n \"journalType\":\"Accrual\",\n \"journalSubType\":\"Social\",\n \"periodStartDate\":\"2022-01-27T00:00:00Z\",\n \"periodEndDate\":\"2022-11-27T00:00:00Z\"\n}",
1551
+ "options": {
1552
+ "raw": {
1553
+ "language": "json"
1554
+ }
1555
+ }
1556
+ },
1557
+ "url": {
1558
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/transaction-history?page=2",
1559
+ "host": [
1560
+ "{{_endpoint}}"
1561
+ ],
1562
+ "path": [
1563
+ "services",
1564
+ "data",
1565
+ "v{{version}}",
1566
+ "connect",
1567
+ "loyalty",
1568
+ "programs",
1569
+ ":loyaltyProgramName",
1570
+ "transaction-history"
1571
+ ],
1572
+ "query": [
1573
+ {
1574
+ "key": "page",
1575
+ "value": "2"
1576
+ }
1577
+ ],
1578
+ "variable": [
1579
+ {
1580
+ "key": "loyaltyProgramName",
1581
+ "value": "NTO Insider"
1582
+ }
1583
+ ]
1584
+ }
1585
+ },
1586
+ "status": "Created",
1587
+ "code": 201,
1588
+ "_postman_previewlanguage": "json",
1589
+ "header": [
1590
+ {
1591
+ "key": "Date",
1592
+ "value": "Wed, 22 May 2024 16:22:05 GMT"
1593
+ },
1594
+ {
1595
+ "key": "Strict-Transport-Security",
1596
+ "value": "max-age=63072000; includeSubDomains"
1597
+ },
1598
+ {
1599
+ "key": "X-Content-Type-Options",
1600
+ "value": "nosniff"
1601
+ },
1602
+ {
1603
+ "key": "X-Robots-Tag",
1604
+ "value": "none"
1605
+ },
1606
+ {
1607
+ "key": "Cache-Control",
1608
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1609
+ },
1610
+ {
1611
+ "key": "Content-Type",
1612
+ "value": "application/json;charset=UTF-8"
1613
+ },
1614
+ {
1615
+ "key": "Vary",
1616
+ "value": "Accept-Encoding"
1617
+ },
1618
+ {
1619
+ "key": "Content-Encoding",
1620
+ "value": "gzip"
1621
+ },
1622
+ {
1623
+ "key": "Transfer-Encoding",
1624
+ "value": "chunked"
1625
+ }
1626
+ ],
1627
+ "cookie": [],
1628
+ "body": "{\n \"message\": null,\n \"status\": true,\n \"totalCount\": 0,\n \"transactionJournals\": []\n}"
1629
+ }
1630
+ ]
1631
+ },
1632
+ {
1633
+ "name": "Transaction Ledger Summary",
1634
+ "event": [
1635
+ {
1636
+ "listen": "prerequest",
1637
+ "script": {
1638
+ "exec": [
1639
+ "/*",
1640
+ "pm.variables.set('journalSubTypeName','journalSubTypeName');",
1641
+ "pm.variables.set('additionalTransactionJournalAttributes','additionalTransactionJournalAttributes');",
1642
+ "pm.variables.set('journalTypeName','journalTypeName');",
1643
+ "pm.variables.set('pageNumber','pageNumber');",
1644
+ "pm.variables.set('periodEndDate','periodEndDate');",
1645
+ "pm.variables.set('periodStartDate','periodStartDate');",
1646
+ "*/"
1647
+ ],
1648
+ "type": "text/javascript",
1649
+ "packages": {}
1650
+ }
1651
+ }
1652
+ ],
1653
+ "protocolProfileBehavior": {
1654
+ "disableBodyPruning": true
1655
+ },
1656
+ "request": {
1657
+ "method": "GET",
1658
+ "header": [],
1659
+ "body": {
1660
+ "mode": "raw",
1661
+ "raw": "",
1662
+ "options": {
1663
+ "raw": {
1664
+ "language": "json"
1665
+ }
1666
+ }
1667
+ },
1668
+ "url": {
1669
+ "raw": "{{_endpoint}}/services/data/v{{version}}/loyalty/programs/:loyaltyProgramName/members/:membershipNumber/transaction-ledger-summary",
1670
+ "host": [
1671
+ "{{_endpoint}}"
1672
+ ],
1673
+ "path": [
1674
+ "services",
1675
+ "data",
1676
+ "v{{version}}",
1677
+ "loyalty",
1678
+ "programs",
1679
+ ":loyaltyProgramName",
1680
+ "members",
1681
+ ":membershipNumber",
1682
+ "transaction-ledger-summary"
1683
+ ],
1684
+ "query": [
1685
+ {
1686
+ "key": "journalSubTypeName",
1687
+ "value": "",
1688
+ "description": "Returns the transaction journals filtered by the specified journal subtype.",
1689
+ "disabled": true
1690
+ },
1691
+ {
1692
+ "key": "additionalTransactionJournalAttributes",
1693
+ "value": "",
1694
+ "description": "Returns the list of transaction journal fields.",
1695
+ "disabled": true
1696
+ },
1697
+ {
1698
+ "key": "journalTypeName",
1699
+ "value": "",
1700
+ "description": "Returns the transaction journals filtered by the specified journal type.",
1701
+ "disabled": true
1702
+ },
1703
+ {
1704
+ "key": "pageNumber",
1705
+ "value": "",
1706
+ "description": "Returns the transaction journals for the specified page number.\n",
1707
+ "disabled": true
1708
+ },
1709
+ {
1710
+ "key": "periodEndDate",
1711
+ "value": "",
1712
+ "description": "Returns the transaction journals filtered by the specified end date.",
1713
+ "disabled": true
1714
+ },
1715
+ {
1716
+ "key": "periodStartDate",
1717
+ "value": "",
1718
+ "description": "Returns the transaction journals filtered by the specified start date.",
1719
+ "disabled": true
1720
+ }
1721
+ ],
1722
+ "variable": [
1723
+ {
1724
+ "key": "loyaltyProgramName",
1725
+ "value": ""
1726
+ },
1727
+ {
1728
+ "key": "membershipNumber",
1729
+ "value": ""
1730
+ }
1731
+ ]
1732
+ },
1733
+ "description": "Standard Documentation:\n\n[https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_transaction_ledger.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_transaction_ledger.htm)"
1734
+ },
1735
+ "response": [
1736
+ {
1737
+ "name": "Transaction Ledger Summary",
1738
+ "originalRequest": {
1739
+ "method": "GET",
1740
+ "header": [
1741
+ {
1742
+ "key": "Authorization",
1743
+ "value": "Bearer {{accessToken}}"
1744
+ }
1745
+ ],
1746
+ "body": {
1747
+ "mode": "raw",
1748
+ "raw": "",
1749
+ "options": {
1750
+ "raw": {
1751
+ "language": "json"
1752
+ }
1753
+ }
1754
+ },
1755
+ "url": {
1756
+ "raw": "{{_endpoint}}/services/data/v{{version}}/loyalty/programs/:loyaltyProgramName/members/:membershipNumber/transaction-ledger-summary",
1757
+ "host": [
1758
+ "{{_endpoint}}"
1759
+ ],
1760
+ "path": [
1761
+ "services",
1762
+ "data",
1763
+ "v{{version}}",
1764
+ "loyalty",
1765
+ "programs",
1766
+ ":loyaltyProgramName",
1767
+ "members",
1768
+ ":membershipNumber",
1769
+ "transaction-ledger-summary"
1770
+ ],
1771
+ "query": [
1772
+ {
1773
+ "key": "journalSubTypeName",
1774
+ "value": "",
1775
+ "description": "Returns the transaction journals filtered by the specified journal subtype.",
1776
+ "disabled": true
1777
+ },
1778
+ {
1779
+ "key": "additionalTransactionJournalAttributes",
1780
+ "value": "",
1781
+ "description": "Returns the list of transaction journal fields.",
1782
+ "disabled": true
1783
+ },
1784
+ {
1785
+ "key": "journalTypeName",
1786
+ "value": "",
1787
+ "description": "Returns the transaction journals filtered by the specified journal type.",
1788
+ "disabled": true
1789
+ },
1790
+ {
1791
+ "key": "pageNumber",
1792
+ "value": "",
1793
+ "description": "Returns the transaction journals for the specified page number.\n",
1794
+ "disabled": true
1795
+ },
1796
+ {
1797
+ "key": "periodEndDate",
1798
+ "value": "",
1799
+ "description": "Returns the transaction journals filtered by the specified end date.",
1800
+ "disabled": true
1801
+ },
1802
+ {
1803
+ "key": "periodStartDate",
1804
+ "value": "",
1805
+ "description": "Returns the transaction journals filtered by the specified start date.",
1806
+ "disabled": true
1807
+ }
1808
+ ],
1809
+ "variable": [
1810
+ {
1811
+ "key": "loyaltyProgramName",
1812
+ "value": "NTO Insider"
1813
+ },
1814
+ {
1815
+ "key": "membershipNumber",
1816
+ "value": "Member123"
1817
+ }
1818
+ ]
1819
+ }
1820
+ },
1821
+ "status": "OK",
1822
+ "code": 200,
1823
+ "_postman_previewlanguage": "json",
1824
+ "header": [
1825
+ {
1826
+ "key": "Date",
1827
+ "value": "Mon, 27 May 2024 19:37:52 GMT"
1828
+ },
1829
+ {
1830
+ "key": "Strict-Transport-Security",
1831
+ "value": "max-age=63072000; includeSubDomains"
1832
+ },
1833
+ {
1834
+ "key": "X-Content-Type-Options",
1835
+ "value": "nosniff"
1836
+ },
1837
+ {
1838
+ "key": "X-Robots-Tag",
1839
+ "value": "none"
1840
+ },
1841
+ {
1842
+ "key": "Cache-Control",
1843
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1844
+ },
1845
+ {
1846
+ "key": "Content-Type",
1847
+ "value": "application/json;charset=UTF-8"
1848
+ },
1849
+ {
1850
+ "key": "Vary",
1851
+ "value": "Accept-Encoding"
1852
+ },
1853
+ {
1854
+ "key": "Content-Encoding",
1855
+ "value": "gzip"
1856
+ },
1857
+ {
1858
+ "key": "Transfer-Encoding",
1859
+ "value": "chunked"
1860
+ }
1861
+ ],
1862
+ "cookie": [],
1863
+ "body": "{\n \"message\": null,\n \"status\": true,\n \"transactionJournalCount\": 1,\n \"transactionJournals\": [\n {\n \"activityDate\": \"2021-01-01T04:05:05.000Z\",\n \"additionalTransactionJournalAttributes\": [],\n \"journalSubTypeName\": \"Member Enrollment\",\n \"journalTypeName\": \"Accrual\",\n \"pointsChange\": [],\n \"transactionJournalId\": \"0lVJ8000000GmaEMAS\",\n \"transactionJournalNumber\": \"00000008\"\n }\n ]\n}"
1864
+ }
1865
+ ]
1866
+ },
1867
+ {
1868
+ "name": "Transaction Journals Execution",
1869
+ "event": [
1870
+ {
1871
+ "listen": "prerequest",
1872
+ "script": {
1873
+ "exec": [
1874
+ "var moment = require('moment');",
1875
+ "pm.globals.set('currentDatetime', moment().format((\"YYYY-MM-DDTHH:MM:SS\")));"
1876
+ ],
1877
+ "type": "text/javascript",
1878
+ "packages": {}
1879
+ }
1880
+ }
1881
+ ],
1882
+ "request": {
1883
+ "method": "POST",
1884
+ "header": [],
1885
+ "body": {
1886
+ "mode": "raw",
1887
+ "raw": "{\n \"transactionJournals\":[\n {\n \"ActivityDate\":\"2023-11-27T12:45:19Z\",\n \"JournalTypeId\":\"0lERM00000001Bb2AI\",\n \"LoyaltyProgramId\":\"0lpRM00000002YTYAY\",\n \"MemberId\":\"0lMRM0000002Fmu2AE\",\n \"Status\":\"Pending\",\n \"appliedPromotions\":[\n {\n \"promotionId\":\"0c8RM0000004FiXYAU\",\n \"rewards\":[\n {\n \"rewardType\":\"Discount\",\n \"discountAmount\":15\n },\n {\n \"rewardType\":\"Points\",\n \"loyaltyProgramCurrencyName\":\"Coins\",\n \"points\":100,\n \"relatedInformation\":\"Test\",\n \"notes\":\"Test\"\n },\n {\n \"rewardType\":\"Voucher\",\n \"voucherDefinitionName\":\"10% Discount Voucher\",\n \"voucherExpirationDate\":\"2023-12-15\",\n \"voucherEffectiveDate\":\"2023-11-29\",\n \"notes\":\"Test\"\n },\n {\n \"rewardType\":\"Badge\",\n \"loyaltyProgramBadgeName\":\"Gen AI Badge\",\n \"memberBadgeStatus\":\"Active\",\n \"badgeValidityEndDate\":\"2023-12-15\",\n \"reason\":\"Test\"\n },\n {\n \"rewardType\":\"Game\",\n \"gameDefinitionName\":\"TestGame\"\n }\n ]\n }\n ]\n }\n ]\n}",
1888
+ "options": {
1889
+ "raw": {
1890
+ "language": "json"
1891
+ }
1892
+ }
1893
+ },
1894
+ "url": {
1895
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/realtime/loyalty/programs/:loyaltyProgramName",
1896
+ "host": [
1897
+ "{{_endpoint}}"
1898
+ ],
1899
+ "path": [
1900
+ "services",
1901
+ "data",
1902
+ "v{{version}}",
1903
+ "connect",
1904
+ "realtime",
1905
+ "loyalty",
1906
+ "programs",
1907
+ ":loyaltyProgramName"
1908
+ ],
1909
+ "variable": [
1910
+ {
1911
+ "key": "loyaltyProgramName",
1912
+ "value": ""
1913
+ }
1914
+ ]
1915
+ },
1916
+ "description": "Standard Documentation:\n\n[https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_loyalty_program_realtime.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_loyalty_program_realtime.htm)"
1917
+ },
1918
+ "response": []
1919
+ },
1920
+ {
1921
+ "name": "Transaction Journals Simulation",
1922
+ "event": [
1923
+ {
1924
+ "listen": "prerequest",
1925
+ "script": {
1926
+ "exec": [
1927
+ "var moment = require('moment');",
1928
+ "pm.globals.set('currentDatetime', moment().format((\"YYYY-MM-DDTHH:MM:SS\")));"
1929
+ ],
1930
+ "type": "text/javascript",
1931
+ "packages": {}
1932
+ }
1933
+ }
1934
+ ],
1935
+ "request": {
1936
+ "method": "POST",
1937
+ "header": [],
1938
+ "body": {
1939
+ "mode": "raw",
1940
+ "raw": "{\n \"transactionJournals\": [\n {\n \"CurrencyIsoCode\": \"EUR\",\n \"ActivityDate\": \"2022-01-04T12:45:19Z\",\n \"JournalDate\": \"2022-01-04T00:45:19Z\",\n \"Brand\": \"\",\n \"Establishment\": \"Apple\",\n \"ExternalTransactionNumber\": \"P1-981950\",\n \"JournalTypeId\": \"0lET10000004CQp\",\n \"LoyaltyProgramId\": \"0lpT10000004CdN\",\n \"MemberId\": \"0lMT10000004CfA\",\n \"TransactionAmount\": \"117\",\n \"TransactionLocation\": \"HitechCity\",\n \"VoucherCode\": \"\",\n \"Origin\": \"asdf\",\n \"Distance\": \"5\",\n \"Destination\": \"Hyderabad\",\n \"FlightNumber\": \"SF-Ran-001\",\n \"Status\": \"Pending\"\n }\n ],\n \"runSetting\": {\n \"isSimulation\": true\n }\n}",
1941
+ "options": {
1942
+ "raw": {
1943
+ "language": "json"
1944
+ }
1945
+ }
1946
+ },
1947
+ "url": {
1948
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/realtime/loyalty/programs/:loyaltyProgramName",
1949
+ "host": [
1950
+ "{{_endpoint}}"
1951
+ ],
1952
+ "path": [
1953
+ "services",
1954
+ "data",
1955
+ "v{{version}}",
1956
+ "connect",
1957
+ "realtime",
1958
+ "loyalty",
1959
+ "programs",
1960
+ ":loyaltyProgramName"
1961
+ ],
1962
+ "variable": [
1963
+ {
1964
+ "key": "loyaltyProgramName",
1965
+ "value": ""
1966
+ }
1967
+ ]
1968
+ },
1969
+ "description": "Standard Documentation:\n\n[https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_loyalty_program_process_simulation.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_loyalty_program_process_simulation.htm)"
1970
+ },
1971
+ "response": []
1972
+ },
1973
+ {
1974
+ "name": "Member Vouchers",
1975
+ "event": [
1976
+ {
1977
+ "listen": "prerequest",
1978
+ "script": {
1979
+ "exec": [
1980
+ "//pm.variables.set('loyaltyProgramName','Nuotare');",
1981
+ "//pm.variables.set('membershipNumber','xyz');"
1982
+ ],
1983
+ "type": "text/javascript",
1984
+ "packages": {}
1985
+ }
1986
+ }
1987
+ ],
1988
+ "protocolProfileBehavior": {
1989
+ "disableBodyPruning": true
1990
+ },
1991
+ "request": {
1992
+ "method": "GET",
1993
+ "header": [],
1994
+ "body": {
1995
+ "mode": "raw",
1996
+ "raw": "",
1997
+ "options": {
1998
+ "raw": {
1999
+ "language": "json"
2000
+ }
2001
+ }
2002
+ },
2003
+ "url": {
2004
+ "raw": "{{_endpoint}}/services/data/v{{version}}/loyalty/programs/:loyaltyProgramName/members/:membershipNumber/vouchers",
2005
+ "host": [
2006
+ "{{_endpoint}}"
2007
+ ],
2008
+ "path": [
2009
+ "services",
2010
+ "data",
2011
+ "v{{version}}",
2012
+ "loyalty",
2013
+ "programs",
2014
+ ":loyaltyProgramName",
2015
+ "members",
2016
+ ":membershipNumber",
2017
+ "vouchers"
2018
+ ],
2019
+ "variable": [
2020
+ {
2021
+ "key": "loyaltyProgramName",
2022
+ "value": ""
2023
+ },
2024
+ {
2025
+ "key": "membershipNumber",
2026
+ "value": ""
2027
+ }
2028
+ ]
2029
+ },
2030
+ "description": "[Member Vouchers](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_member_vouchers.htm)\n\nNOTE:\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
2031
+ },
2032
+ "response": [
2033
+ {
2034
+ "name": "Member Vouchers",
2035
+ "originalRequest": {
2036
+ "method": "GET",
2037
+ "header": [
2038
+ {
2039
+ "key": "Authorization",
2040
+ "value": "Bearer {{accessToken}}"
2041
+ }
2042
+ ],
2043
+ "body": {
2044
+ "mode": "raw",
2045
+ "raw": "",
2046
+ "options": {
2047
+ "raw": {
2048
+ "language": "json"
2049
+ }
2050
+ }
2051
+ },
2052
+ "url": {
2053
+ "raw": "{{_endpoint}}/services/data/v{{version}}/loyalty/programs/:loyaltyProgramName/members/:membershipNumber/vouchers",
2054
+ "host": [
2055
+ "{{_endpoint}}"
2056
+ ],
2057
+ "path": [
2058
+ "services",
2059
+ "data",
2060
+ "v{{version}}",
2061
+ "loyalty",
2062
+ "programs",
2063
+ ":loyaltyProgramName",
2064
+ "members",
2065
+ ":membershipNumber",
2066
+ "vouchers"
2067
+ ],
2068
+ "variable": [
2069
+ {
2070
+ "key": "loyaltyProgramName",
2071
+ "value": "NTO Insider"
2072
+ },
2073
+ {
2074
+ "key": "membershipNumber",
2075
+ "value": "member1"
2076
+ }
2077
+ ]
2078
+ }
2079
+ },
2080
+ "status": "OK",
2081
+ "code": 200,
2082
+ "_postman_previewlanguage": "json",
2083
+ "header": [
2084
+ {
2085
+ "key": "Date",
2086
+ "value": "Wed, 22 May 2024 16:34:18 GMT"
2087
+ },
2088
+ {
2089
+ "key": "Strict-Transport-Security",
2090
+ "value": "max-age=63072000; includeSubDomains"
2091
+ },
2092
+ {
2093
+ "key": "X-Content-Type-Options",
2094
+ "value": "nosniff"
2095
+ },
2096
+ {
2097
+ "key": "X-Robots-Tag",
2098
+ "value": "none"
2099
+ },
2100
+ {
2101
+ "key": "Cache-Control",
2102
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
2103
+ },
2104
+ {
2105
+ "key": "Content-Type",
2106
+ "value": "application/json;charset=UTF-8"
2107
+ },
2108
+ {
2109
+ "key": "Vary",
2110
+ "value": "Accept-Encoding"
2111
+ },
2112
+ {
2113
+ "key": "Content-Encoding",
2114
+ "value": "gzip"
2115
+ },
2116
+ {
2117
+ "key": "Transfer-Encoding",
2118
+ "value": "chunked"
2119
+ }
2120
+ ],
2121
+ "cookie": [],
2122
+ "body": "{\n \"voucherCount\": 0,\n \"vouchers\": []\n}"
2123
+ }
2124
+ ]
2125
+ },
2126
+ {
2127
+ "name": "Cancel a Voucher",
2128
+ "event": [
2129
+ {
2130
+ "listen": "prerequest",
2131
+ "script": {
2132
+ "exec": [
2133
+ "//pm.variables.set('loyaltyProgramName','xyz');",
2134
+ "pm.variables.set('processName','CancelVoucher');"
2135
+ ],
2136
+ "type": "text/javascript",
2137
+ "packages": {}
2138
+ }
2139
+ }
2140
+ ],
2141
+ "request": {
2142
+ "method": "POST",
2143
+ "header": [],
2144
+ "body": {
2145
+ "mode": "raw",
2146
+ "raw": "{\n \"processParameters\":[\n {\n \"MemberId\":\"0lMxx00000000BJEAY\",\n \"VoucherId\":\"0kdxx000000000B245\"\n }\n ]\n}",
2147
+ "options": {
2148
+ "raw": {
2149
+ "language": "json"
2150
+ }
2151
+ }
2152
+ },
2153
+ "url": {
2154
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
2155
+ "host": [
2156
+ "{{_endpoint}}"
2157
+ ],
2158
+ "path": [
2159
+ "services",
2160
+ "data",
2161
+ "v{{version}}",
2162
+ "connect",
2163
+ "loyalty",
2164
+ "programs",
2165
+ ":loyaltyProgramName",
2166
+ "program-processes",
2167
+ ":processName"
2168
+ ],
2169
+ "variable": [
2170
+ {
2171
+ "key": "loyaltyProgramName",
2172
+ "value": "NTO Insider"
2173
+ },
2174
+ {
2175
+ "key": "processName",
2176
+ "value": ""
2177
+ }
2178
+ ]
2179
+ },
2180
+ "description": "Standard Documentation:\n\n[https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_cancel_voucher.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_cancel_voucher.htm)\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
2181
+ },
2182
+ "response": []
2183
+ },
2184
+ {
2185
+ "name": "Credit Points to Members",
2186
+ "event": [
2187
+ {
2188
+ "listen": "prerequest",
2189
+ "script": {
2190
+ "exec": [
2191
+ "//pm.variables.set('loyaltyProgramName','xyz');",
2192
+ "pm.variables.set('processName','CreditPointsToMembers');"
2193
+ ],
2194
+ "type": "text/javascript",
2195
+ "packages": {}
2196
+ }
2197
+ }
2198
+ ],
2199
+ "request": {
2200
+ "method": "POST",
2201
+ "header": [],
2202
+ "body": {
2203
+ "mode": "raw",
2204
+ "raw": "{\n \"processParameters\":[\n {\n \"TransactionJournal\":{\n \"ActivityDate\":\"2023-08-27T00:00:00Z\",\n \"ExternalTransactionNumber\":\"1\",\n \"InvoiceDate\":\"2023-08-23\",\n \"JournalTypeName\":\"Accrual\",\n \"MembershipNumber\":\"Member123\",\n \"TransactionAmount\":\"45.0\",\n \"CurrencyIsoCode\":\"EUR\",\n \"Status\":\"Processed\"\n },\n \"PointsToCredit\":100.0\n }\n ]\n}",
2205
+ "options": {
2206
+ "raw": {
2207
+ "language": "json"
2208
+ }
2209
+ }
2210
+ },
2211
+ "url": {
2212
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
2213
+ "host": [
2214
+ "{{_endpoint}}"
2215
+ ],
2216
+ "path": [
2217
+ "services",
2218
+ "data",
2219
+ "v{{version}}",
2220
+ "connect",
2221
+ "loyalty",
2222
+ "programs",
2223
+ ":loyaltyProgramName",
2224
+ "program-processes",
2225
+ ":processName"
2226
+ ],
2227
+ "variable": [
2228
+ {
2229
+ "key": "loyaltyProgramName",
2230
+ "value": ""
2231
+ },
2232
+ {
2233
+ "key": "processName",
2234
+ "value": ""
2235
+ }
2236
+ ]
2237
+ },
2238
+ "description": "Standard Documentation:\n\n[https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_credit_points_to_members.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_credit_points_to_members.htm)\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
2239
+ },
2240
+ "response": [
2241
+ {
2242
+ "name": "Credit Points to Members",
2243
+ "originalRequest": {
2244
+ "method": "POST",
2245
+ "header": [
2246
+ {
2247
+ "key": "Authorization",
2248
+ "value": "Bearer {{accessToken}}"
2249
+ }
2250
+ ],
2251
+ "body": {
2252
+ "mode": "raw",
2253
+ "raw": "{\n \"processParameters\":[\n {\n \"TransactionJournal\":{\n \"ActivityDate\":\"2023-08-27T00:00:00Z\",\n \"ExternalTransactionNumber\":\"1\",\n \"InvoiceDate\":\"2023-08-23\",\n \"JournalTypeName\":\"Accrual\",\n \"MembershipNumber\":\"Member123\",\n \"TransactionAmount\":\"45.0\",\n \"CurrencyIsoCode\":\"EUR\",\n \"Status\":\"Processed\"\n },\n \"PointsToCredit\":100.0\n }\n ]\n}",
2254
+ "options": {
2255
+ "raw": {
2256
+ "language": "json"
2257
+ }
2258
+ }
2259
+ },
2260
+ "url": {
2261
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
2262
+ "host": [
2263
+ "{{_endpoint}}"
2264
+ ],
2265
+ "path": [
2266
+ "services",
2267
+ "data",
2268
+ "v{{version}}",
2269
+ "connect",
2270
+ "loyalty",
2271
+ "programs",
2272
+ ":loyaltyProgramName",
2273
+ "program-processes",
2274
+ ":processName"
2275
+ ],
2276
+ "variable": [
2277
+ {
2278
+ "key": "loyaltyProgramName",
2279
+ "value": "NTO Insider"
2280
+ },
2281
+ {
2282
+ "key": "processName",
2283
+ "value": "creditPoints"
2284
+ }
2285
+ ]
2286
+ }
2287
+ },
2288
+ "status": "Created",
2289
+ "code": 201,
2290
+ "_postman_previewlanguage": "json",
2291
+ "header": [
2292
+ {
2293
+ "key": "Date",
2294
+ "value": "Mon, 27 May 2024 20:09:08 GMT"
2295
+ },
2296
+ {
2297
+ "key": "Strict-Transport-Security",
2298
+ "value": "max-age=63072000; includeSubDomains"
2299
+ },
2300
+ {
2301
+ "key": "X-Content-Type-Options",
2302
+ "value": "nosniff"
2303
+ },
2304
+ {
2305
+ "key": "X-Robots-Tag",
2306
+ "value": "none"
2307
+ },
2308
+ {
2309
+ "key": "Cache-Control",
2310
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
2311
+ },
2312
+ {
2313
+ "key": "Content-Type",
2314
+ "value": "application/json;charset=UTF-8"
2315
+ },
2316
+ {
2317
+ "key": "Vary",
2318
+ "value": "Accept-Encoding"
2319
+ },
2320
+ {
2321
+ "key": "Content-Encoding",
2322
+ "value": "gzip"
2323
+ },
2324
+ {
2325
+ "key": "Transfer-Encoding",
2326
+ "value": "chunked"
2327
+ }
2328
+ ],
2329
+ "cookie": [],
2330
+ "body": "{\n \"message\": null,\n \"outputParameters\": {\n \"outputParameters\": {\n \"results\": [\n {\n \"PointsCredited\": 100\n }\n ]\n }\n },\n \"simulationDetails\": {},\n \"status\": true\n}"
2331
+ }
2332
+ ]
2333
+ },
2334
+ {
2335
+ "name": "Debit Points from Members",
2336
+ "event": [
2337
+ {
2338
+ "listen": "prerequest",
2339
+ "script": {
2340
+ "exec": [
2341
+ "//pm.variables.set('loyaltyProgramName','xyz');",
2342
+ "pm.variables.set('processName','DebitPointsFromMembers');"
2343
+ ],
2344
+ "type": "text/javascript",
2345
+ "packages": {}
2346
+ }
2347
+ }
2348
+ ],
2349
+ "request": {
2350
+ "method": "POST",
2351
+ "header": [],
2352
+ "body": {
2353
+ "mode": "raw",
2354
+ "raw": "{\n \"processParameters\": [\n {\n \"TransactionJournal\": {\n \"ActivityDate\": \"2023-08-27T00:00:00Z\",\n \"ExternalTransactionNumber\": \"1\",\n \"InvoiceDate\": \"2023-08-23\",\n \"JournalTypeName\": \"Redemption\",\n \"MembershipNumber\":\"Member123\",\n \"TransactionAmount\": \"45.0\",\n \"CurrencyIsoCode\":\"EUR\",\n \"Status\":\"Processed\"\n },\n \"PointsToDebit\": 6.0\n }\n ]\n}",
2355
+ "options": {
2356
+ "raw": {
2357
+ "language": "json"
2358
+ }
2359
+ }
2360
+ },
2361
+ "url": {
2362
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
2363
+ "host": [
2364
+ "{{_endpoint}}"
2365
+ ],
2366
+ "path": [
2367
+ "services",
2368
+ "data",
2369
+ "v{{version}}",
2370
+ "connect",
2371
+ "loyalty",
2372
+ "programs",
2373
+ ":loyaltyProgramName",
2374
+ "program-processes",
2375
+ ":processName"
2376
+ ],
2377
+ "query": [
2378
+ {
2379
+ "key": "journalTypeId",
2380
+ "value": "",
2381
+ "disabled": true
2382
+ }
2383
+ ],
2384
+ "variable": [
2385
+ {
2386
+ "key": "loyaltyProgramName",
2387
+ "value": ""
2388
+ },
2389
+ {
2390
+ "key": "processName",
2391
+ "value": ""
2392
+ }
2393
+ ]
2394
+ },
2395
+ "description": "[Debit Points from Members](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_debit_points_from_members.htm)\n\nNOTE:\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
2396
+ },
2397
+ "response": [
2398
+ {
2399
+ "name": "Debit Points from Members",
2400
+ "originalRequest": {
2401
+ "method": "POST",
2402
+ "header": [
2403
+ {
2404
+ "key": "Authorization",
2405
+ "value": "Bearer {{accessToken}}"
2406
+ }
2407
+ ],
2408
+ "body": {
2409
+ "mode": "raw",
2410
+ "raw": "{\n \"processParameters\": [\n {\n \"TransactionJournal\": {\n \"ActivityDate\": \"2023-08-27T00:00:00Z\",\n \"ExternalTransactionNumber\": \"1\",\n \"InvoiceDate\": \"2023-08-23\",\n \"JournalTypeName\": \"Redemption\",\n \"MembershipNumber\":\"Member123\",\n \"TransactionAmount\": \"45.0\",\n \"CurrencyIsoCode\":\"EUR\",\n \"Status\":\"Processed\"\n },\n \"PointsToDebit\": 6.0\n }\n ]\n}",
2411
+ "options": {
2412
+ "raw": {
2413
+ "language": "json"
2414
+ }
2415
+ }
2416
+ },
2417
+ "url": {
2418
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
2419
+ "host": [
2420
+ "{{_endpoint}}"
2421
+ ],
2422
+ "path": [
2423
+ "services",
2424
+ "data",
2425
+ "v{{version}}",
2426
+ "connect",
2427
+ "loyalty",
2428
+ "programs",
2429
+ ":loyaltyProgramName",
2430
+ "program-processes",
2431
+ ":processName"
2432
+ ],
2433
+ "query": [
2434
+ {
2435
+ "key": "journalTypeId",
2436
+ "value": null,
2437
+ "disabled": true
2438
+ }
2439
+ ],
2440
+ "variable": [
2441
+ {
2442
+ "key": "loyaltyProgramName",
2443
+ "value": "NTO Insider"
2444
+ },
2445
+ {
2446
+ "key": "processName",
2447
+ "value": "debitPoints"
2448
+ }
2449
+ ]
2450
+ }
2451
+ },
2452
+ "status": "Created",
2453
+ "code": 201,
2454
+ "_postman_previewlanguage": "json",
2455
+ "header": [
2456
+ {
2457
+ "key": "Date",
2458
+ "value": "Mon, 27 May 2024 20:21:45 GMT"
2459
+ },
2460
+ {
2461
+ "key": "Strict-Transport-Security",
2462
+ "value": "max-age=63072000; includeSubDomains"
2463
+ },
2464
+ {
2465
+ "key": "X-Content-Type-Options",
2466
+ "value": "nosniff"
2467
+ },
2468
+ {
2469
+ "key": "X-Robots-Tag",
2470
+ "value": "none"
2471
+ },
2472
+ {
2473
+ "key": "Cache-Control",
2474
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
2475
+ },
2476
+ {
2477
+ "key": "Content-Type",
2478
+ "value": "application/json;charset=UTF-8"
2479
+ },
2480
+ {
2481
+ "key": "Vary",
2482
+ "value": "Accept-Encoding"
2483
+ },
2484
+ {
2485
+ "key": "Content-Encoding",
2486
+ "value": "gzip"
2487
+ },
2488
+ {
2489
+ "key": "Transfer-Encoding",
2490
+ "value": "chunked"
2491
+ }
2492
+ ],
2493
+ "cookie": [],
2494
+ "body": "{\n \"message\": null,\n \"outputParameters\": {\n \"outputParameters\": {\n \"results\": [\n {\n \"PointsDebited\": 6\n }\n ]\n }\n },\n \"simulationDetails\": {},\n \"status\": true\n}"
2495
+ }
2496
+ ]
2497
+ },
2498
+ {
2499
+ "name": "Enroll for Promotions",
2500
+ "event": [
2501
+ {
2502
+ "listen": "prerequest",
2503
+ "script": {
2504
+ "exec": [
2505
+ "//pm.variables.set('loyaltyProgramName','xyz');",
2506
+ "pm.variables.set('processName','EnrollInPromotion');"
2507
+ ],
2508
+ "type": "text/javascript",
2509
+ "packages": {}
2510
+ }
2511
+ }
2512
+ ],
2513
+ "request": {
2514
+ "method": "POST",
2515
+ "header": [],
2516
+ "body": {
2517
+ "mode": "raw",
2518
+ "raw": "{\n \"processParameters\":[\n {\n \"MembershipNumber\":\"Member123\",\n \"PromotionId\":\"0c8J80000008OMhIAM\"\n }\n ]\n}",
2519
+ "options": {
2520
+ "raw": {
2521
+ "language": "json"
2522
+ }
2523
+ }
2524
+ },
2525
+ "url": {
2526
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
2527
+ "host": [
2528
+ "{{_endpoint}}"
2529
+ ],
2530
+ "path": [
2531
+ "services",
2532
+ "data",
2533
+ "v{{version}}",
2534
+ "connect",
2535
+ "loyalty",
2536
+ "programs",
2537
+ ":loyaltyProgramName",
2538
+ "program-processes",
2539
+ ":processName"
2540
+ ],
2541
+ "query": [
2542
+ {
2543
+ "key": "journalTypeId",
2544
+ "value": "",
2545
+ "disabled": true
2546
+ }
2547
+ ],
2548
+ "variable": [
2549
+ {
2550
+ "key": "loyaltyProgramName",
2551
+ "value": ""
2552
+ },
2553
+ {
2554
+ "key": "processName",
2555
+ "value": ""
2556
+ }
2557
+ ]
2558
+ },
2559
+ "description": "[Enroll for Promotions](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_enroll_ln_promotion.htm)\n\nNOTE:\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
2560
+ },
2561
+ "response": [
2562
+ {
2563
+ "name": "example with a membership number",
2564
+ "originalRequest": {
2565
+ "method": "POST",
2566
+ "header": [
2567
+ {
2568
+ "key": "Authorization",
2569
+ "value": "Bearer {{accessToken}}"
2570
+ }
2571
+ ],
2572
+ "body": {
2573
+ "mode": "raw",
2574
+ "raw": "{\n \"processParameters\":[\n {\n \"MembershipNumber\":\"M1234\",\n \"PromotionName\":\"Flat20\"\n }\n ]\n}",
2575
+ "options": {
2576
+ "raw": {
2577
+ "language": "json"
2578
+ }
2579
+ }
2580
+ },
2581
+ "url": {
2582
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
2583
+ "host": [
2584
+ "{{_endpoint}}"
2585
+ ],
2586
+ "path": [
2587
+ "services",
2588
+ "data",
2589
+ "v{{version}}",
2590
+ "connect",
2591
+ "loyalty",
2592
+ "programs",
2593
+ ":loyaltyProgramName",
2594
+ "program-processes",
2595
+ ":processName"
2596
+ ],
2597
+ "query": [
2598
+ {
2599
+ "key": "journalTypeId",
2600
+ "value": null,
2601
+ "disabled": true
2602
+ }
2603
+ ],
2604
+ "variable": [
2605
+ {
2606
+ "key": "loyaltyProgramName"
2607
+ },
2608
+ {
2609
+ "key": "processName"
2610
+ }
2611
+ ]
2612
+ }
2613
+ },
2614
+ "_postman_previewlanguage": "Text",
2615
+ "header": null,
2616
+ "cookie": [],
2617
+ "body": null
2618
+ }
2619
+ ]
2620
+ },
2621
+ {
2622
+ "name": "Get Member Promotions",
2623
+ "event": [
2624
+ {
2625
+ "listen": "prerequest",
2626
+ "script": {
2627
+ "exec": [
2628
+ "//pm.variables.set('loyaltyProgramName','xyz');",
2629
+ "pm.variables.set('processName','GetMemberPromotions');"
2630
+ ],
2631
+ "type": "text/javascript",
2632
+ "packages": {}
2633
+ }
2634
+ }
2635
+ ],
2636
+ "request": {
2637
+ "method": "POST",
2638
+ "header": [],
2639
+ "body": {
2640
+ "mode": "raw",
2641
+ "raw": "{\n \"processParameters\":[\n {\n \"MemberId\":\"0lMRM0000004G5h2AE\"\n }\n ]\n}",
2642
+ "options": {
2643
+ "raw": {
2644
+ "language": "json"
2645
+ }
2646
+ }
2647
+ },
2648
+ "url": {
2649
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
2650
+ "host": [
2651
+ "{{_endpoint}}"
2652
+ ],
2653
+ "path": [
2654
+ "services",
2655
+ "data",
2656
+ "v{{version}}",
2657
+ "connect",
2658
+ "loyalty",
2659
+ "programs",
2660
+ ":loyaltyProgramName",
2661
+ "program-processes",
2662
+ ":processName"
2663
+ ],
2664
+ "query": [
2665
+ {
2666
+ "key": "journalTypeId",
2667
+ "value": "",
2668
+ "disabled": true
2669
+ }
2670
+ ],
2671
+ "variable": [
2672
+ {
2673
+ "key": "loyaltyProgramName"
2674
+ },
2675
+ {
2676
+ "key": "processName"
2677
+ }
2678
+ ]
2679
+ },
2680
+ "description": "[Get Member Promotions](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_get_member_promotions.htm)\n\nNOTE:\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
2681
+ },
2682
+ "response": [
2683
+ {
2684
+ "name": "example with a member ID",
2685
+ "originalRequest": {
2686
+ "method": "POST",
2687
+ "header": [
2688
+ {
2689
+ "key": "Authorization",
2690
+ "value": "Bearer {{accessToken}}"
2691
+ }
2692
+ ],
2693
+ "body": {
2694
+ "mode": "raw",
2695
+ "raw": "{\n \"processParameters\":[\n {\n \"MemberId\":\"0lMRM0000004G5h2AE\"\n }\n ]\n}",
2696
+ "options": {
2697
+ "raw": {
2698
+ "language": "json"
2699
+ }
2700
+ }
2701
+ },
2702
+ "url": {
2703
+ "raw": "https://itab2c--devloyalty.sandbox.my.salesforce.com/services/data/v60.0/connect/loyalty/programs/Volare/program-processes/processName",
2704
+ "protocol": "https",
2705
+ "host": [
2706
+ "itab2c--devloyalty",
2707
+ "sandbox",
2708
+ "my",
2709
+ "salesforce",
2710
+ "com"
2711
+ ],
2712
+ "path": [
2713
+ "services",
2714
+ "data",
2715
+ "v60.0",
2716
+ "connect",
2717
+ "loyalty",
2718
+ "programs",
2719
+ "Volare",
2720
+ "program-processes",
2721
+ "processName"
2722
+ ],
2723
+ "query": [
2724
+ {
2725
+ "key": "journalTypeId",
2726
+ "value": null,
2727
+ "disabled": true
2728
+ }
2729
+ ]
2730
+ }
2731
+ },
2732
+ "_postman_previewlanguage": "Text",
2733
+ "header": null,
2734
+ "cookie": [],
2735
+ "body": null
2736
+ },
2737
+ {
2738
+ "name": "example with a membership number",
2739
+ "originalRequest": {
2740
+ "method": "POST",
2741
+ "header": [
2742
+ {
2743
+ "key": "Authorization",
2744
+ "value": "Bearer {{accessToken}}"
2745
+ }
2746
+ ],
2747
+ "body": {
2748
+ "mode": "raw",
2749
+ "raw": "{\n \"processParameters\":[\n {\n \"MembershipNumber\":\"M1234\"\n }\n ]\n}",
2750
+ "options": {
2751
+ "raw": {
2752
+ "language": "json"
2753
+ }
2754
+ }
2755
+ },
2756
+ "url": {
2757
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
2758
+ "host": [
2759
+ "{{_endpoint}}"
2760
+ ],
2761
+ "path": [
2762
+ "services",
2763
+ "data",
2764
+ "v{{version}}",
2765
+ "connect",
2766
+ "loyalty",
2767
+ "programs",
2768
+ ":loyaltyProgramName",
2769
+ "program-processes",
2770
+ ":processName"
2771
+ ],
2772
+ "query": [
2773
+ {
2774
+ "key": "journalTypeId",
2775
+ "value": null,
2776
+ "disabled": true
2777
+ }
2778
+ ],
2779
+ "variable": [
2780
+ {
2781
+ "key": "loyaltyProgramName"
2782
+ },
2783
+ {
2784
+ "key": "processName"
2785
+ }
2786
+ ]
2787
+ }
2788
+ },
2789
+ "_postman_previewlanguage": "Text",
2790
+ "header": null,
2791
+ "cookie": [],
2792
+ "body": null
2793
+ }
2794
+ ]
2795
+ },
2796
+ {
2797
+ "name": "Issue a Voucher",
2798
+ "event": [
2799
+ {
2800
+ "listen": "prerequest",
2801
+ "script": {
2802
+ "exec": [
2803
+ "//pm.variables.set('loyaltyProgramName','xyz');",
2804
+ "pm.variables.set('processName','IssueVoucher');"
2805
+ ],
2806
+ "type": "text/javascript",
2807
+ "packages": {}
2808
+ }
2809
+ }
2810
+ ],
2811
+ "request": {
2812
+ "method": "POST",
2813
+ "header": [],
2814
+ "body": {
2815
+ "mode": "raw",
2816
+ "raw": "{\n \"processParameters\":[\n {\n \"MemberId\":\"0lMxx00000000BJEAY\",\n \"VoucherCode\":\"15OFF\",\n \"VoucherFaceValue\":15,\n \"VoucherExpirationDate\":\"2022-07-13\"\n }\n ]\n}",
2817
+ "options": {
2818
+ "raw": {
2819
+ "language": "json"
2820
+ }
2821
+ }
2822
+ },
2823
+ "url": {
2824
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
2825
+ "host": [
2826
+ "{{_endpoint}}"
2827
+ ],
2828
+ "path": [
2829
+ "services",
2830
+ "data",
2831
+ "v{{version}}",
2832
+ "connect",
2833
+ "loyalty",
2834
+ "programs",
2835
+ ":loyaltyProgramName",
2836
+ "program-processes",
2837
+ ":processName"
2838
+ ],
2839
+ "query": [
2840
+ {
2841
+ "key": "journalTypeId",
2842
+ "value": "",
2843
+ "disabled": true
2844
+ }
2845
+ ],
2846
+ "variable": [
2847
+ {
2848
+ "key": "loyaltyProgramName"
2849
+ },
2850
+ {
2851
+ "key": "processName"
2852
+ }
2853
+ ]
2854
+ },
2855
+ "description": "[Issue a Voucher](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_issue_voucher.htm)\n\nNOTE:\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
2856
+ },
2857
+ "response": [
2858
+ {
2859
+ "name": "example with a member ID",
2860
+ "originalRequest": {
2861
+ "method": "POST",
2862
+ "header": [],
2863
+ "body": {
2864
+ "mode": "raw",
2865
+ "raw": "{\n \"processParameters\":[\n {\n \"MemberId\":\"0lMxx00000000BJEAY\",\n \"VoucherCode\":\"15OFF\",\n \"VoucherFaceValue\":15,\n \"VoucherExpirationDate\":\"2022-07-13\"\n }\n ]\n}",
2866
+ "options": {
2867
+ "raw": {
2868
+ "language": "json"
2869
+ }
2870
+ }
2871
+ },
2872
+ "url": {
2873
+ "raw": "https://itab2c--devloyalty.sandbox.my.salesforce.com/services/data/v60.0/connect/loyalty/programs/Volare/program-processes/processName",
2874
+ "protocol": "https",
2875
+ "host": [
2876
+ "itab2c--devloyalty",
2877
+ "sandbox",
2878
+ "my",
2879
+ "salesforce",
2880
+ "com"
2881
+ ],
2882
+ "path": [
2883
+ "services",
2884
+ "data",
2885
+ "v60.0",
2886
+ "connect",
2887
+ "loyalty",
2888
+ "programs",
2889
+ "Volare",
2890
+ "program-processes",
2891
+ "processName"
2892
+ ],
2893
+ "query": [
2894
+ {
2895
+ "key": "journalTypeId",
2896
+ "value": null,
2897
+ "disabled": true
2898
+ }
2899
+ ]
2900
+ }
2901
+ },
2902
+ "_postman_previewlanguage": "Text",
2903
+ "header": null,
2904
+ "cookie": [],
2905
+ "body": null
2906
+ },
2907
+ {
2908
+ "name": "example with a membership number",
2909
+ "originalRequest": {
2910
+ "method": "POST",
2911
+ "header": [
2912
+ {
2913
+ "key": "Authorization",
2914
+ "value": "Bearer {{accessToken}}"
2915
+ }
2916
+ ],
2917
+ "body": {
2918
+ "mode": "raw",
2919
+ "raw": "{\n \"processParameters\":[\n {\n \"MembershipNumber\":\"003\",\n \"VoucherCode\":\"15OFF\",\n \"VoucherDiscountPercentage\":20\n }\n ]\n}",
2920
+ "options": {
2921
+ "raw": {
2922
+ "language": "json"
2923
+ }
2924
+ }
2925
+ },
2926
+ "url": {
2927
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
2928
+ "host": [
2929
+ "{{_endpoint}}"
2930
+ ],
2931
+ "path": [
2932
+ "services",
2933
+ "data",
2934
+ "v{{version}}",
2935
+ "connect",
2936
+ "loyalty",
2937
+ "programs",
2938
+ ":loyaltyProgramName",
2939
+ "program-processes",
2940
+ ":processName"
2941
+ ],
2942
+ "query": [
2943
+ {
2944
+ "key": "journalTypeId",
2945
+ "value": null,
2946
+ "disabled": true
2947
+ }
2948
+ ],
2949
+ "variable": [
2950
+ {
2951
+ "key": "loyaltyProgramName"
2952
+ },
2953
+ {
2954
+ "key": "processName"
2955
+ }
2956
+ ]
2957
+ }
2958
+ },
2959
+ "_postman_previewlanguage": "Text",
2960
+ "header": null,
2961
+ "cookie": [],
2962
+ "body": null
2963
+ }
2964
+ ]
2965
+ },
2966
+ {
2967
+ "name": "Unenroll a Member",
2968
+ "event": [
2969
+ {
2970
+ "listen": "prerequest",
2971
+ "script": {
2972
+ "exec": [
2973
+ "//pm.variables.set('loyaltyProgramName','xyz');",
2974
+ "pm.variables.set('processName','UnenrollMember');"
2975
+ ],
2976
+ "type": "text/javascript",
2977
+ "packages": {}
2978
+ }
2979
+ }
2980
+ ],
2981
+ "request": {
2982
+ "method": "POST",
2983
+ "header": [],
2984
+ "body": {
2985
+ "mode": "raw",
2986
+ "raw": "\n{\n \"processParameters\":[\n {\n \"MemberId\":\"0lMRM0000004G6f2AE\"\n }\n ]\n}",
2987
+ "options": {
2988
+ "raw": {
2989
+ "language": "json"
2990
+ }
2991
+ }
2992
+ },
2993
+ "url": {
2994
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
2995
+ "host": [
2996
+ "{{_endpoint}}"
2997
+ ],
2998
+ "path": [
2999
+ "services",
3000
+ "data",
3001
+ "v{{version}}",
3002
+ "connect",
3003
+ "loyalty",
3004
+ "programs",
3005
+ ":loyaltyProgramName",
3006
+ "program-processes",
3007
+ ":processName"
3008
+ ],
3009
+ "query": [
3010
+ {
3011
+ "key": "journalTypeId",
3012
+ "value": "",
3013
+ "disabled": true
3014
+ }
3015
+ ],
3016
+ "variable": [
3017
+ {
3018
+ "key": "loyaltyProgramName"
3019
+ },
3020
+ {
3021
+ "key": "processName"
3022
+ }
3023
+ ]
3024
+ },
3025
+ "description": "[Unenroll a Member](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_unenroll_member.htm)\n\nNOTE:\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
3026
+ },
3027
+ "response": [
3028
+ {
3029
+ "name": "example with a member ID",
3030
+ "originalRequest": {
3031
+ "method": "POST",
3032
+ "header": [],
3033
+ "body": {
3034
+ "mode": "raw",
3035
+ "raw": "\n{\n \"processParameters\":[\n {\n \"MemberId\":\"0lMRM0000004G6f2AE\"\n }\n ]\n}",
3036
+ "options": {
3037
+ "raw": {
3038
+ "language": "json"
3039
+ }
3040
+ }
3041
+ },
3042
+ "url": {
3043
+ "raw": "https://itab2c--devloyalty.sandbox.my.salesforce.com/services/data/v60.0/connect/loyalty/programs/Volare/program-processes/processName",
3044
+ "protocol": "https",
3045
+ "host": [
3046
+ "itab2c--devloyalty",
3047
+ "sandbox",
3048
+ "my",
3049
+ "salesforce",
3050
+ "com"
3051
+ ],
3052
+ "path": [
3053
+ "services",
3054
+ "data",
3055
+ "v60.0",
3056
+ "connect",
3057
+ "loyalty",
3058
+ "programs",
3059
+ "Volare",
3060
+ "program-processes",
3061
+ "processName"
3062
+ ],
3063
+ "query": [
3064
+ {
3065
+ "key": "journalTypeId",
3066
+ "value": null,
3067
+ "disabled": true
3068
+ }
3069
+ ]
3070
+ }
3071
+ },
3072
+ "_postman_previewlanguage": "Text",
3073
+ "header": null,
3074
+ "cookie": [],
3075
+ "body": null
3076
+ },
3077
+ {
3078
+ "name": "example with a membership number",
3079
+ "originalRequest": {
3080
+ "method": "POST",
3081
+ "header": [],
3082
+ "body": {
3083
+ "mode": "raw",
3084
+ "raw": "\n{\n \"processParameters\":[\n {\n \"MemberId\":\"0lMRM0000004G6f2AE\"\n }\n ]\n}",
3085
+ "options": {
3086
+ "raw": {
3087
+ "language": "json"
3088
+ }
3089
+ }
3090
+ },
3091
+ "url": {
3092
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
3093
+ "host": [
3094
+ "{{_endpoint}}"
3095
+ ],
3096
+ "path": [
3097
+ "services",
3098
+ "data",
3099
+ "v{{version}}",
3100
+ "connect",
3101
+ "loyalty",
3102
+ "programs",
3103
+ ":loyaltyProgramName",
3104
+ "program-processes",
3105
+ ":processName"
3106
+ ],
3107
+ "query": [
3108
+ {
3109
+ "key": "journalTypeId",
3110
+ "value": null,
3111
+ "disabled": true
3112
+ }
3113
+ ],
3114
+ "variable": [
3115
+ {
3116
+ "key": "loyaltyProgramName"
3117
+ },
3118
+ {
3119
+ "key": "processName"
3120
+ }
3121
+ ]
3122
+ }
3123
+ },
3124
+ "_postman_previewlanguage": "Text",
3125
+ "header": null,
3126
+ "cookie": [],
3127
+ "body": null
3128
+ }
3129
+ ]
3130
+ },
3131
+ {
3132
+ "name": "Opt Out from a Promotion",
3133
+ "event": [
3134
+ {
3135
+ "listen": "prerequest",
3136
+ "script": {
3137
+ "exec": [
3138
+ "//pm.variables.set('loyaltyProgramName','xyz');",
3139
+ "pm.variables.set('processName','LeavePromotion');"
3140
+ ],
3141
+ "type": "text/javascript",
3142
+ "packages": {}
3143
+ }
3144
+ }
3145
+ ],
3146
+ "request": {
3147
+ "method": "POST",
3148
+ "header": [],
3149
+ "body": {
3150
+ "mode": "raw",
3151
+ "raw": "{\n \"processParameters\":[\n {\n \"MembershipNumber\":\"M1\",\n \"PromotionName\":\"Promo1\"\n }\n ]\n}",
3152
+ "options": {
3153
+ "raw": {
3154
+ "language": "json"
3155
+ }
3156
+ }
3157
+ },
3158
+ "url": {
3159
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
3160
+ "host": [
3161
+ "{{_endpoint}}"
3162
+ ],
3163
+ "path": [
3164
+ "services",
3165
+ "data",
3166
+ "v{{version}}",
3167
+ "connect",
3168
+ "loyalty",
3169
+ "programs",
3170
+ ":loyaltyProgramName",
3171
+ "program-processes",
3172
+ ":processName"
3173
+ ],
3174
+ "query": [
3175
+ {
3176
+ "key": "journalTypeId",
3177
+ "value": "",
3178
+ "disabled": true
3179
+ }
3180
+ ],
3181
+ "variable": [
3182
+ {
3183
+ "key": "loyaltyProgramName"
3184
+ },
3185
+ {
3186
+ "key": "processName"
3187
+ }
3188
+ ]
3189
+ },
3190
+ "description": "[Opt Out from a Promotion](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_unenroll_promotion.htm)\n\nNOTE:\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
3191
+ },
3192
+ "response": [
3193
+ {
3194
+ "name": "example with a member ID",
3195
+ "originalRequest": {
3196
+ "method": "POST",
3197
+ "header": [
3198
+ {
3199
+ "key": "Authorization",
3200
+ "value": "Bearer {{accessToken}}"
3201
+ }
3202
+ ],
3203
+ "body": {
3204
+ "mode": "raw",
3205
+ "raw": "{\n \"processParameters\":[\n {\n \"MembershipNumber\":\"M1\",\n \"PromotionName\":\"Promo1\"\n }\n ]\n}",
3206
+ "options": {
3207
+ "raw": {
3208
+ "language": "json"
3209
+ }
3210
+ }
3211
+ },
3212
+ "url": {
3213
+ "raw": "https://itab2c--devloyalty.sandbox.my.salesforce.com/services/data/v60.0/connect/loyalty/programs/Volare/program-processes/processName",
3214
+ "protocol": "https",
3215
+ "host": [
3216
+ "itab2c--devloyalty",
3217
+ "sandbox",
3218
+ "my",
3219
+ "salesforce",
3220
+ "com"
3221
+ ],
3222
+ "path": [
3223
+ "services",
3224
+ "data",
3225
+ "v60.0",
3226
+ "connect",
3227
+ "loyalty",
3228
+ "programs",
3229
+ "Volare",
3230
+ "program-processes",
3231
+ "processName"
3232
+ ],
3233
+ "query": [
3234
+ {
3235
+ "key": "journalTypeId",
3236
+ "value": null,
3237
+ "disabled": true
3238
+ }
3239
+ ]
3240
+ }
3241
+ },
3242
+ "_postman_previewlanguage": "Text",
3243
+ "header": null,
3244
+ "cookie": [],
3245
+ "body": null
3246
+ },
3247
+ {
3248
+ "name": "example with a member ID and promotion ID",
3249
+ "originalRequest": {
3250
+ "method": "POST",
3251
+ "header": [
3252
+ {
3253
+ "key": "Authorization",
3254
+ "value": "Bearer {{accessToken}}"
3255
+ }
3256
+ ],
3257
+ "body": {
3258
+ "mode": "raw",
3259
+ "raw": "{\n \"processParameters\":[\n {\n \"MemberId\":\"0lMRM0000004F152AE\",\n \"PromotionId\":\"1lpxx00000000CvAAI\"\n }\n ]\n}",
3260
+ "options": {
3261
+ "raw": {
3262
+ "language": "json"
3263
+ }
3264
+ }
3265
+ },
3266
+ "url": {
3267
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
3268
+ "host": [
3269
+ "{{_endpoint}}"
3270
+ ],
3271
+ "path": [
3272
+ "services",
3273
+ "data",
3274
+ "v{{version}}",
3275
+ "connect",
3276
+ "loyalty",
3277
+ "programs",
3278
+ ":loyaltyProgramName",
3279
+ "program-processes",
3280
+ ":processName"
3281
+ ],
3282
+ "query": [
3283
+ {
3284
+ "key": "journalTypeId",
3285
+ "value": null,
3286
+ "disabled": true
3287
+ }
3288
+ ],
3289
+ "variable": [
3290
+ {
3291
+ "key": "loyaltyProgramName"
3292
+ },
3293
+ {
3294
+ "key": "processName"
3295
+ }
3296
+ ]
3297
+ }
3298
+ },
3299
+ "_postman_previewlanguage": "Text",
3300
+ "header": null,
3301
+ "cookie": [],
3302
+ "body": null
3303
+ }
3304
+ ]
3305
+ },
3306
+ {
3307
+ "name": "Update Member Details",
3308
+ "event": [
3309
+ {
3310
+ "listen": "prerequest",
3311
+ "script": {
3312
+ "exec": [
3313
+ "//pm.variables.set('loyaltyProgramName','xyz');",
3314
+ "pm.variables.set('processName','UpdateMemberDetails');"
3315
+ ],
3316
+ "type": "text/javascript",
3317
+ "packages": {}
3318
+ }
3319
+ }
3320
+ ],
3321
+ "request": {
3322
+ "method": "POST",
3323
+ "header": [],
3324
+ "body": {
3325
+ "mode": "raw",
3326
+ "raw": "{\n \"processParameters\":[\n {\n \"MemberId\":\"0lMRM0000004G5h2AE\",\n \"MembershipNumber\":\"M1234\",\n \"Email\":\"adam.smith@nto.com\",\n \"EnrollmentDate\":\"2023-05-28\",\n \"LastName\":\"Smith\"\n }\n ]\n}",
3327
+ "options": {
3328
+ "raw": {
3329
+ "language": "json"
3330
+ }
3331
+ }
3332
+ },
3333
+ "url": {
3334
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
3335
+ "host": [
3336
+ "{{_endpoint}}"
3337
+ ],
3338
+ "path": [
3339
+ "services",
3340
+ "data",
3341
+ "v{{version}}",
3342
+ "connect",
3343
+ "loyalty",
3344
+ "programs",
3345
+ ":loyaltyProgramName",
3346
+ "program-processes",
3347
+ ":processName"
3348
+ ],
3349
+ "query": [
3350
+ {
3351
+ "key": "journalTypeId",
3352
+ "value": "",
3353
+ "disabled": true
3354
+ }
3355
+ ],
3356
+ "variable": [
3357
+ {
3358
+ "key": "loyaltyProgramName"
3359
+ },
3360
+ {
3361
+ "key": "processName"
3362
+ }
3363
+ ]
3364
+ },
3365
+ "description": "[Update Member Details](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_update_member_details.htm)\n\nNOTE:\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
3366
+ },
3367
+ "response": [
3368
+ {
3369
+ "name": "example with a member ID",
3370
+ "originalRequest": {
3371
+ "method": "POST",
3372
+ "header": [],
3373
+ "body": {
3374
+ "mode": "raw",
3375
+ "raw": "{\n \"processParameters\":[\n {\n \"MemberId\":\"0lMRM0000004G5h2AE\",\n \"MembershipNumber\":\"M1234\",\n \"Email\":\"adam.smith@nto.com\",\n \"EnrollmentDate\":\"2023-05-28\",\n \"LastName\":\"Smith\"\n }\n ]\n}",
3376
+ "options": {
3377
+ "raw": {
3378
+ "language": "json"
3379
+ }
3380
+ }
3381
+ },
3382
+ "url": {
3383
+ "raw": "https://itab2c--devloyalty.sandbox.my.salesforce.com/services/data/v60.0/connect/loyalty/programs/Volare/program-processes/processName",
3384
+ "protocol": "https",
3385
+ "host": [
3386
+ "itab2c--devloyalty",
3387
+ "sandbox",
3388
+ "my",
3389
+ "salesforce",
3390
+ "com"
3391
+ ],
3392
+ "path": [
3393
+ "services",
3394
+ "data",
3395
+ "v60.0",
3396
+ "connect",
3397
+ "loyalty",
3398
+ "programs",
3399
+ "Volare",
3400
+ "program-processes",
3401
+ "processName"
3402
+ ],
3403
+ "query": [
3404
+ {
3405
+ "key": "journalTypeId",
3406
+ "value": null,
3407
+ "disabled": true
3408
+ }
3409
+ ]
3410
+ }
3411
+ },
3412
+ "_postman_previewlanguage": "Text",
3413
+ "header": null,
3414
+ "cookie": [],
3415
+ "body": null
3416
+ },
3417
+ {
3418
+ "name": "example with a membership number",
3419
+ "originalRequest": {
3420
+ "method": "POST",
3421
+ "header": [
3422
+ {
3423
+ "key": "Authorization",
3424
+ "value": "Bearer {{accessToken}}"
3425
+ }
3426
+ ],
3427
+ "body": {
3428
+ "mode": "raw",
3429
+ "raw": "{\n \"processParameters\":[\n {\n \"CurrentMembershipNumber\":\"M1234\",\n \"MembershipNumber\":\"M1234\",\n \"Email\":\"adam.smith@nto.com\",\n \"EnrollmentDate\":\"2023-05-28\",\n \"LastName\":\"Smith\"\n }\n ]\n}",
3430
+ "options": {
3431
+ "raw": {
3432
+ "language": "json"
3433
+ }
3434
+ }
3435
+ },
3436
+ "url": {
3437
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
3438
+ "host": [
3439
+ "{{_endpoint}}"
3440
+ ],
3441
+ "path": [
3442
+ "services",
3443
+ "data",
3444
+ "v{{version}}",
3445
+ "connect",
3446
+ "loyalty",
3447
+ "programs",
3448
+ ":loyaltyProgramName",
3449
+ "program-processes",
3450
+ ":processName"
3451
+ ],
3452
+ "query": [
3453
+ {
3454
+ "key": "journalTypeId",
3455
+ "value": null,
3456
+ "disabled": true
3457
+ }
3458
+ ],
3459
+ "variable": [
3460
+ {
3461
+ "key": "loyaltyProgramName"
3462
+ },
3463
+ {
3464
+ "key": "processName"
3465
+ }
3466
+ ]
3467
+ }
3468
+ },
3469
+ "_postman_previewlanguage": "Text",
3470
+ "header": null,
3471
+ "cookie": [],
3472
+ "body": null
3473
+ }
3474
+ ]
3475
+ },
3476
+ {
3477
+ "name": "Update Member Tier",
3478
+ "event": [
3479
+ {
3480
+ "listen": "prerequest",
3481
+ "script": {
3482
+ "exec": [
3483
+ "//pm.variables.set('loyaltyProgramName','xyz');",
3484
+ "pm.variables.set('processName','TierProcessing');"
3485
+ ],
3486
+ "type": "text/javascript",
3487
+ "packages": {}
3488
+ }
3489
+ }
3490
+ ],
3491
+ "request": {
3492
+ "method": "POST",
3493
+ "header": [],
3494
+ "body": {
3495
+ "mode": "raw",
3496
+ "raw": "{\n \"processParameters\":[\n {\n \"MemberId\":\"0lMRM0000004GBs2AM\",\n \"NewTier\":\"Gold\",\n \"ReasonForChange\":\"update tier\"\n }\n ]\n}",
3497
+ "options": {
3498
+ "raw": {
3499
+ "language": "json"
3500
+ }
3501
+ }
3502
+ },
3503
+ "url": {
3504
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
3505
+ "host": [
3506
+ "{{_endpoint}}"
3507
+ ],
3508
+ "path": [
3509
+ "services",
3510
+ "data",
3511
+ "v{{version}}",
3512
+ "connect",
3513
+ "loyalty",
3514
+ "programs",
3515
+ ":loyaltyProgramName",
3516
+ "program-processes",
3517
+ ":processName"
3518
+ ],
3519
+ "query": [
3520
+ {
3521
+ "key": "journalTypeId",
3522
+ "value": "",
3523
+ "disabled": true
3524
+ }
3525
+ ],
3526
+ "variable": [
3527
+ {
3528
+ "key": "loyaltyProgramName"
3529
+ },
3530
+ {
3531
+ "key": "processName"
3532
+ }
3533
+ ]
3534
+ },
3535
+ "description": "[Update Member Tier](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_update_tier.htm)\n\nNOTE:\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
3536
+ },
3537
+ "response": [
3538
+ {
3539
+ "name": "example with a member ID",
3540
+ "originalRequest": {
3541
+ "method": "POST",
3542
+ "header": [],
3543
+ "body": {
3544
+ "mode": "raw",
3545
+ "raw": "{\n \"processParameters\":[\n {\n \"MemberId\":\"0lMRM0000004GBs2AM\",\n \"NewTier\":\"Gold\",\n \"ReasonForChange\":\"update tier\"\n }\n ]\n}",
3546
+ "options": {
3547
+ "raw": {
3548
+ "language": "json"
3549
+ }
3550
+ }
3551
+ },
3552
+ "url": {
3553
+ "raw": "https://itab2c--devloyalty.sandbox.my.salesforce.com/services/data/v60.0/connect/loyalty/programs/Volare/program-processes/processName",
3554
+ "protocol": "https",
3555
+ "host": [
3556
+ "itab2c--devloyalty",
3557
+ "sandbox",
3558
+ "my",
3559
+ "salesforce",
3560
+ "com"
3561
+ ],
3562
+ "path": [
3563
+ "services",
3564
+ "data",
3565
+ "v60.0",
3566
+ "connect",
3567
+ "loyalty",
3568
+ "programs",
3569
+ "Volare",
3570
+ "program-processes",
3571
+ "processName"
3572
+ ],
3573
+ "query": [
3574
+ {
3575
+ "key": "journalTypeId",
3576
+ "value": null,
3577
+ "disabled": true
3578
+ }
3579
+ ]
3580
+ }
3581
+ },
3582
+ "_postman_previewlanguage": "Text",
3583
+ "header": null,
3584
+ "cookie": [],
3585
+ "body": null
3586
+ },
3587
+ {
3588
+ "name": "example with a membership number",
3589
+ "originalRequest": {
3590
+ "method": "POST",
3591
+ "header": [
3592
+ {
3593
+ "key": "Authorization",
3594
+ "value": "Bearer {{accessToken}}"
3595
+ }
3596
+ ],
3597
+ "body": {
3598
+ "mode": "raw",
3599
+ "raw": "{\n \"processParameters\":[\n {\n \"MembershipNumber\":\"M2_Chloe_Sun\",\n \"NewTier\":\"Gold\",\n \"ReasonForChange\":\"update tier\"\n }\n ]\n}",
3600
+ "options": {
3601
+ "raw": {
3602
+ "language": "json"
3603
+ }
3604
+ }
3605
+ },
3606
+ "url": {
3607
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
3608
+ "host": [
3609
+ "{{_endpoint}}"
3610
+ ],
3611
+ "path": [
3612
+ "services",
3613
+ "data",
3614
+ "v{{version}}",
3615
+ "connect",
3616
+ "loyalty",
3617
+ "programs",
3618
+ ":loyaltyProgramName",
3619
+ "program-processes",
3620
+ ":processName"
3621
+ ],
3622
+ "query": [
3623
+ {
3624
+ "key": "journalTypeId",
3625
+ "value": null,
3626
+ "disabled": true
3627
+ }
3628
+ ],
3629
+ "variable": [
3630
+ {
3631
+ "key": "loyaltyProgramName"
3632
+ },
3633
+ {
3634
+ "key": "processName"
3635
+ }
3636
+ ]
3637
+ }
3638
+ },
3639
+ "_postman_previewlanguage": "Text",
3640
+ "header": null,
3641
+ "cookie": [],
3642
+ "body": null
3643
+ }
3644
+ ]
3645
+ },
3646
+ {
3647
+ "name": "Games",
3648
+ "event": [
3649
+ {
3650
+ "listen": "prerequest",
3651
+ "script": {
3652
+ "exec": [
3653
+ "pm.variables.set('participantId','12345');",
3654
+ ""
3655
+ ],
3656
+ "type": "text/javascript",
3657
+ "packages": {}
3658
+ }
3659
+ }
3660
+ ],
3661
+ "protocolProfileBehavior": {
3662
+ "disableBodyPruning": true
3663
+ },
3664
+ "request": {
3665
+ "method": "GET",
3666
+ "header": [],
3667
+ "body": {
3668
+ "mode": "raw",
3669
+ "raw": "",
3670
+ "options": {
3671
+ "raw": {
3672
+ "language": "json"
3673
+ }
3674
+ }
3675
+ },
3676
+ "url": {
3677
+ "raw": "{{_endpoint}}/services/data/v{{version}}/game/participant/:participantId/games",
3678
+ "host": [
3679
+ "{{_endpoint}}"
3680
+ ],
3681
+ "path": [
3682
+ "services",
3683
+ "data",
3684
+ "v{{version}}",
3685
+ "game",
3686
+ "participant",
3687
+ ":participantId",
3688
+ "games"
3689
+ ],
3690
+ "query": [
3691
+ {
3692
+ "key": "definitionId",
3693
+ "value": "",
3694
+ "description": "ID of the game definition associated with the game whose details are to be fetched.",
3695
+ "disabled": true
3696
+ },
3697
+ {
3698
+ "key": "gameParticipantRewardId",
3699
+ "value": "",
3700
+ "description": "ID of the participant's game reward associated with the game whose details are to be fetched.",
3701
+ "disabled": true
3702
+ }
3703
+ ],
3704
+ "variable": [
3705
+ {
3706
+ "key": "participantId",
3707
+ "value": ""
3708
+ }
3709
+ ]
3710
+ },
3711
+ "description": "[Games](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_gamification.htm)\n\nNOTE:\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
3712
+ },
3713
+ "response": []
3714
+ },
3715
+ {
3716
+ "name": "Game Reward",
3717
+ "event": [
3718
+ {
3719
+ "listen": "prerequest",
3720
+ "script": {
3721
+ "exec": [
3722
+ "pm.variables.set('gameParticipantRewardId','12345');",
3723
+ ""
3724
+ ],
3725
+ "type": "text/javascript",
3726
+ "packages": {}
3727
+ }
3728
+ }
3729
+ ],
3730
+ "protocolProfileBehavior": {
3731
+ "disableBodyPruning": true
3732
+ },
3733
+ "request": {
3734
+ "method": "GET",
3735
+ "header": [],
3736
+ "body": {
3737
+ "mode": "raw",
3738
+ "raw": "",
3739
+ "options": {
3740
+ "raw": {
3741
+ "language": "json"
3742
+ }
3743
+ }
3744
+ },
3745
+ "url": {
3746
+ "raw": "{{_endpoint}}/services/data/v{{version}}/game/gameparticipantreward/:gameParticipantRewardId/game-reward",
3747
+ "host": [
3748
+ "{{_endpoint}}"
3749
+ ],
3750
+ "path": [
3751
+ "services",
3752
+ "data",
3753
+ "v{{version}}",
3754
+ "game",
3755
+ "gameparticipantreward",
3756
+ ":gameParticipantRewardId",
3757
+ "game-reward"
3758
+ ],
3759
+ "variable": [
3760
+ {
3761
+ "key": "gameParticipantRewardId",
3762
+ "value": ""
3763
+ }
3764
+ ]
3765
+ },
3766
+ "description": "[Game Reward](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_game_result.htm)\n\nNOTE:\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
3767
+ },
3768
+ "response": []
3769
+ },
3770
+ {
3771
+ "name": "Eligible Promotions",
3772
+ "event": [
3773
+ {
3774
+ "listen": "prerequest",
3775
+ "script": {
3776
+ "exec": [
3777
+ "//pm.variables.set('loyaltyProgramName','xyz');",
3778
+ "pm.variables.set('processName','TierProcessing');"
3779
+ ],
3780
+ "type": "text/javascript",
3781
+ "packages": {}
3782
+ }
3783
+ }
3784
+ ],
3785
+ "request": {
3786
+ "method": "POST",
3787
+ "header": [],
3788
+ "body": {
3789
+ "mode": "raw",
3790
+ "raw": "{\n \"cart\":{\n \"cartDetails\":[\n {\n \"activityStartDate\":\"2023-06-14T12:45:19Z\",\n \"contactId\":\"003xx000004WjzAAAS\",\n \"transactionAmount\":499,\n \"currencyISOCode\":\"INR\",\n \"cartLineDetails\":[\n {\n \"cartLineProductId\":\"01txx0000006iTsAAI\",\n \"cartLineItemQuantity\":3,\n \"cartLineItemAmount\":499,\n \"cartLineProductCatalogId\":\"0ZSSB0000002d8X4AQ\"\n }\n ]\n }\n ]\n }\n}",
3791
+ "options": {
3792
+ "raw": {
3793
+ "language": "json"
3794
+ }
3795
+ }
3796
+ },
3797
+ "url": {
3798
+ "raw": "{{_endpoint}}/services/data/v{{version}}/global-promotions-management/eligible-promotions",
3799
+ "host": [
3800
+ "{{_endpoint}}"
3801
+ ],
3802
+ "path": [
3803
+ "services",
3804
+ "data",
3805
+ "v{{version}}",
3806
+ "global-promotions-management",
3807
+ "eligible-promotions"
3808
+ ],
3809
+ "query": [
3810
+ {
3811
+ "key": "journalTypeId",
3812
+ "value": "",
3813
+ "disabled": true
3814
+ }
3815
+ ]
3816
+ },
3817
+ "description": "[Eligible Promotions](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_eligible_promotions.htm)\n\nNOTE:\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
3818
+ },
3819
+ "response": [
3820
+ {
3821
+ "name": "example of the details of a customer’s cart whose eligible promotions are to be fetched",
3822
+ "originalRequest": {
3823
+ "method": "POST",
3824
+ "header": [
3825
+ {
3826
+ "key": "Authorization",
3827
+ "value": "Bearer {{accessToken}}"
3828
+ }
3829
+ ],
3830
+ "body": {
3831
+ "mode": "raw",
3832
+ "raw": "{\n \"cart\":{\n \"cartDetails\":[\n {\n \"activityStartDate\":\"2023-06-14T12:45:19Z\",\n \"contactId\":\"003xx000004WjzAAAS\",\n \"transactionAmount\":499,\n \"currencyISOCode\":\"INR\",\n \"cartLineDetails\":[\n {\n \"cartLineProductId\":\"01txx0000006iTsAAI\",\n \"cartLineItemQuantity\":3,\n \"cartLineItemAmount\":499,\n \"cartLineProductCatalogId\":\"0ZSSB0000002d8X4AQ\"\n }\n ]\n }\n ]\n }\n}",
3833
+ "options": {
3834
+ "raw": {
3835
+ "language": "json"
3836
+ }
3837
+ }
3838
+ },
3839
+ "url": {
3840
+ "raw": "https://itab2c--devloyalty.sandbox.my.salesforce.com/services/data/v60.0/connect/loyalty/programs/Volare/program-processes/processName",
3841
+ "protocol": "https",
3842
+ "host": [
3843
+ "itab2c--devloyalty",
3844
+ "sandbox",
3845
+ "my",
3846
+ "salesforce",
3847
+ "com"
3848
+ ],
3849
+ "path": [
3850
+ "services",
3851
+ "data",
3852
+ "v60.0",
3853
+ "connect",
3854
+ "loyalty",
3855
+ "programs",
3856
+ "Volare",
3857
+ "program-processes",
3858
+ "processName"
3859
+ ],
3860
+ "query": [
3861
+ {
3862
+ "key": "journalTypeId",
3863
+ "value": null,
3864
+ "disabled": true
3865
+ }
3866
+ ]
3867
+ }
3868
+ },
3869
+ "_postman_previewlanguage": "Text",
3870
+ "header": null,
3871
+ "cookie": [],
3872
+ "body": null
3873
+ },
3874
+ {
3875
+ "name": "example of the details of a loyalty program member’s cart whose eligible loyalty program promotions are to be fetched:",
3876
+ "originalRequest": {
3877
+ "method": "POST",
3878
+ "header": [
3879
+ {
3880
+ "key": "Authorization",
3881
+ "value": "Bearer {{accessToken}}"
3882
+ }
3883
+ ],
3884
+ "body": {
3885
+ "mode": "raw",
3886
+ "raw": "{\n \"cart\":{\n \"cartDetails\":[\n {\n \"activityStartDate\":\"2023-06-14T12:45:19Z\",\n \"currencyISOCode\":\"INR\",\n \"transactionAmount\":499,\n \"membershipNumber\":\"Member-005\",\n \"cartLineDetails\":[\n {\n \"cartLineProductId\":\"01txx0000006iTsAAI\",\n \"cartLineItemQuantity\":2,\n \"cartLineItemAmount\":99,\n \"cartLineProductCatalogId\":\"0ZSSB0000002d8X4AQ\"\n },\n {\n \"cartLineProduct\":\"Coke\",\n \"cartLineItemQuantity\":10,\n \"cartLineItemAmount\":400,\n \"cartLineProductCatalog\":\"Beverages\"\n }\n ]\n }\n ]\n }\n}",
3887
+ "options": {
3888
+ "raw": {
3889
+ "language": "json"
3890
+ }
3891
+ }
3892
+ },
3893
+ "url": {
3894
+ "raw": "{{_endpoint}}/services/data/v{{version}}/connect/loyalty/programs/:loyaltyProgramName/program-processes/:processName",
3895
+ "host": [
3896
+ "{{_endpoint}}"
3897
+ ],
3898
+ "path": [
3899
+ "services",
3900
+ "data",
3901
+ "v{{version}}",
3902
+ "connect",
3903
+ "loyalty",
3904
+ "programs",
3905
+ ":loyaltyProgramName",
3906
+ "program-processes",
3907
+ ":processName"
3908
+ ],
3909
+ "query": [
3910
+ {
3911
+ "key": "journalTypeId",
3912
+ "value": null,
3913
+ "disabled": true
3914
+ }
3915
+ ],
3916
+ "variable": [
3917
+ {
3918
+ "key": "loyaltyProgramName"
3919
+ },
3920
+ {
3921
+ "key": "processName"
3922
+ }
3923
+ ]
3924
+ }
3925
+ },
3926
+ "_postman_previewlanguage": "Text",
3927
+ "header": null,
3928
+ "cookie": [],
3929
+ "body": null
3930
+ }
3931
+ ]
3932
+ },
3933
+ {
3934
+ "name": "Promotions Creation",
3935
+ "event": [
3936
+ {
3937
+ "listen": "prerequest",
3938
+ "script": {
3939
+ "exec": [
3940
+ "//pm.variables.set('loyaltyProgramName','xyz');",
3941
+ "pm.variables.set('processName','TierProcessing');"
3942
+ ],
3943
+ "type": "text/javascript",
3944
+ "packages": {}
3945
+ }
3946
+ }
3947
+ ],
3948
+ "request": {
3949
+ "method": "POST",
3950
+ "header": [],
3951
+ "body": {
3952
+ "mode": "raw",
3953
+ "raw": "{\n \"name\":\"Free Beverage\",\n \"startDateTime\":\"2023-06-30T00:00:00.000Z\",\n \"displayName\":\"Free Beverage\",\n \"priorityNumber\":1,\n \"description\":\"Buy 2 Get 1 free\",\n \"endDateTime\":\"2023-12-30T00:00:00.000Z\",\n \"objective\":\"To increase sales\",\n \"loyaltyProgram\":{\n \"name\":\"Program-001\"\n },\n \"additionalFieldValues\":{\n \"attributes\":{\n \"promotionLocation__c\":\"HYD\"\n }\n },\n \"promotionLimits\":{\n \"perLineItemLimit\":10,\n \"vouchersLimit\":100,\n \"vouchersPerCustomerLimit\":5,\n \"perCartLimit\":5,\n \"usePerCustomerLimit\":5,\n \"liabilityLimit\":10000,\n \"loyaltyProgramCurrency\":{\n \"id\":\"0lcSB00000001TxYAI\"\n },\n \"pointsPerCustomerLimit\":5\n },\n \"promotionEligibility\":{\n \"eligibleProductCategories\":[\n {\n \"id\":\"0ZGSB0000002td74AA\"\n }\n ],\n \"eligibleProducts\":[\n {\n \"name\":\"Coke\"\n }\n ],\n \"eligibleChannels\":[\n {\n \"channelType\":\"Offline\",\n \"store\":{\n \"name\":\"test Store\"\n },\n \"retailLocationGroup\":{\n \"name\":\"test\"\n }\n }\n ],\n \"eligibleCustomerEvents\":{\n \"event\":\"MemberBirthday\",\n \"eventPeriodUnit\":\"Date\"\n },\n \"eligibleEnrollmentPeriod\":{\n \"isEnrollmentRequired\":true,\n \"enrollmentStartDate\":\"2023-06-30T00:00:00.000Z\",\n \"enrollmentEndDate\":\"2023-12-30T00:00:00.000Z\"\n },\n \"eligibleLoyaltyTiers\":[\n {\n \"tierGroup\":{\n \"name\":\"Group-001\",\n \"id\":\"0ltSB00000000T3YAI\"\n },\n \"tier\":{\n \"name\":\"Silver\",\n \"id\":\"0lgSB00000000srYAA\"\n }\n }\n ]\n }\n}",
3954
+ "options": {
3955
+ "raw": {
3956
+ "language": "json"
3957
+ }
3958
+ }
3959
+ },
3960
+ "url": {
3961
+ "raw": "{{_endpoint}}/services/data/v{{version}}/global-promotions-management/promotions",
3962
+ "host": [
3963
+ "{{_endpoint}}"
3964
+ ],
3965
+ "path": [
3966
+ "services",
3967
+ "data",
3968
+ "v{{version}}",
3969
+ "global-promotions-management",
3970
+ "promotions"
3971
+ ],
3972
+ "query": [
3973
+ {
3974
+ "key": "journalTypeId",
3975
+ "value": "",
3976
+ "disabled": true
3977
+ }
3978
+ ]
3979
+ },
3980
+ "description": "[Promotions Creation](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_unified_promotions.htm)\n\nNOTE:\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
3981
+ },
3982
+ "response": []
3983
+ },
3984
+ {
3985
+ "name": "Promotion Details",
3986
+ "event": [
3987
+ {
3988
+ "listen": "prerequest",
3989
+ "script": {
3990
+ "exec": [
3991
+ "//pm.variables.set('promotionId','abcd');"
3992
+ ],
3993
+ "type": "text/javascript",
3994
+ "packages": {}
3995
+ }
3996
+ }
3997
+ ],
3998
+ "protocolProfileBehavior": {
3999
+ "disableBodyPruning": true
4000
+ },
4001
+ "request": {
4002
+ "method": "GET",
4003
+ "header": [],
4004
+ "body": {
4005
+ "mode": "raw",
4006
+ "raw": "",
4007
+ "options": {
4008
+ "raw": {
4009
+ "language": "json"
4010
+ }
4011
+ }
4012
+ },
4013
+ "url": {
4014
+ "raw": "{{_endpoint}}/services/data/v{{version}}/global-promotions-management/promotions/:promotionId",
4015
+ "host": [
4016
+ "{{_endpoint}}"
4017
+ ],
4018
+ "path": [
4019
+ "services",
4020
+ "data",
4021
+ "v{{version}}",
4022
+ "global-promotions-management",
4023
+ "promotions",
4024
+ ":promotionId"
4025
+ ],
4026
+ "query": [
4027
+ {
4028
+ "key": "journalTypeId",
4029
+ "value": "",
4030
+ "disabled": true
4031
+ }
4032
+ ],
4033
+ "variable": [
4034
+ {
4035
+ "key": "promotionId",
4036
+ "value": ""
4037
+ }
4038
+ ]
4039
+ },
4040
+ "description": "[Promotions Creation](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_unified_promotions.htm)\n\nNOTE:\n\nIn the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke."
4041
+ },
4042
+ "response": []
4043
+ },
4044
+ {
4045
+ "name": "Integration Procedure Invocation Using GET",
4046
+ "request": {
4047
+ "method": "GET",
4048
+ "header": [],
4049
+ "url": {
4050
+ "raw": "{{_endpoint}}/services/apexrest/:NAMESPACE/v1/integrationprocedure/:TYPE_SUBTYPE/",
4051
+ "host": [
4052
+ "{{_endpoint}}"
4053
+ ],
4054
+ "path": [
4055
+ "services",
4056
+ "apexrest",
4057
+ ":NAMESPACE",
4058
+ "v1",
4059
+ "integrationprocedure",
4060
+ ":TYPE_SUBTYPE",
4061
+ ""
4062
+ ],
4063
+ "variable": [
4064
+ {
4065
+ "key": "NAMESPACE",
4066
+ "value": "",
4067
+ "description": "The namespace: `omnistudio`, `vlocity_ins`, `vlocity_cmt`, or `vlocity_ps`"
4068
+ },
4069
+ {
4070
+ "key": "TYPE_SUBTYPE",
4071
+ "value": "",
4072
+ "description": "Type and SubType of the Integration Procedure separated by an underscore."
4073
+ }
4074
+ ]
4075
+ }
4076
+ },
4077
+ "response": []
4078
+ },
4079
+ {
4080
+ "name": "Integration Procedure Invocation Using POST",
4081
+ "request": {
4082
+ "method": "POST",
4083
+ "header": [],
4084
+ "url": {
4085
+ "raw": "{{_endpoint}}/services/apexrest/:NAMESPACE/v1/integrationprocedure/:TYPE_SUBTYPE/",
4086
+ "host": [
4087
+ "{{_endpoint}}"
4088
+ ],
4089
+ "path": [
4090
+ "services",
4091
+ "apexrest",
4092
+ ":NAMESPACE",
4093
+ "v1",
4094
+ "integrationprocedure",
4095
+ ":TYPE_SUBTYPE",
4096
+ ""
4097
+ ],
4098
+ "variable": [
4099
+ {
4100
+ "key": "NAMESPACE",
4101
+ "value": "",
4102
+ "description": "The namespace is `omnistudio`, `vlocity_ins`, `vlocity_cmt`, or `vlocity_ps`"
4103
+ },
4104
+ {
4105
+ "key": "TYPE_SUBTYPE",
4106
+ "value": "",
4107
+ "description": "Type and SubType of the Integration Procedure separated by an underscore."
4108
+ }
4109
+ ]
4110
+ }
4111
+ },
4112
+ "response": []
4113
+ }
4114
+ ]
4115
+ }