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,1951 @@
1
+ {
2
+ "info": {
3
+ "_postman_id": "67cb9baa-e0da-4986-957e-88d8734647e2",
4
+ "name": "Salesforce Platform APIs - bulk-v2",
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": "Successful Create job Query",
165
+ "event": [
166
+ {
167
+ "listen": "test",
168
+ "script": {
169
+ "exec": [
170
+ "const context = pm.environment.name ? pm.environment : pm.collectionVariables;",
171
+ "",
172
+ "const response = JSON.parse(pm.response.text())",
173
+ "context.set(\"_jobId\", response.id);"
174
+ ],
175
+ "type": "text/javascript"
176
+ }
177
+ }
178
+ ],
179
+ "request": {
180
+ "method": "POST",
181
+ "header": [
182
+ {
183
+ "key": "Content-Type",
184
+ "value": "application/json"
185
+ }
186
+ ],
187
+ "body": {
188
+ "mode": "raw",
189
+ "raw": "{\n \"operation\" : \"query\",\n \"query\" : \"SELECT fields FROM object WHERE filter\",\n \"contentType\" : \"CSV\",\n \"columnDelimiter\" : \"BACKQUOTE | CARET | COMMA | PIPE | SEMICOLON | TAB\",\n \"lineEnding\" : \"CRLF | LF\"\n} "
190
+ },
191
+ "url": {
192
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/query",
193
+ "host": [
194
+ "{{_endpoint}}"
195
+ ],
196
+ "path": [
197
+ "services",
198
+ "data",
199
+ "v{{version}}",
200
+ "jobs",
201
+ "query"
202
+ ]
203
+ }
204
+ },
205
+ "response": [
206
+ {
207
+ "name": "Successful Create job Query",
208
+ "originalRequest": {
209
+ "method": "POST",
210
+ "header": [
211
+ {
212
+ "key": "Content-Type",
213
+ "value": "application/json"
214
+ }
215
+ ],
216
+ "body": {
217
+ "mode": "raw",
218
+ "raw": "{\n \"operation\" : \"query\",\n \"query\" : \"SELECT Id FROM Account\",\n \"contentType\" : \"CSV\",\n \"columnDelimiter\" : \"COMMA\",\n \"lineEnding\" : \"LF\"\n} "
219
+ },
220
+ "url": {
221
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/query",
222
+ "host": [
223
+ "{{_endpoint}}"
224
+ ],
225
+ "path": [
226
+ "services",
227
+ "data",
228
+ "v{{version}}",
229
+ "jobs",
230
+ "query"
231
+ ]
232
+ }
233
+ },
234
+ "status": "OK",
235
+ "code": 200,
236
+ "_postman_previewlanguage": "json",
237
+ "header": [
238
+ {
239
+ "key": "Date",
240
+ "value": "Mon, 20 Nov 2023 15:06:06 GMT"
241
+ },
242
+ {
243
+ "key": "Strict-Transport-Security",
244
+ "value": "max-age=63072000; includeSubDomains"
245
+ },
246
+ {
247
+ "key": "X-Content-Type-Options",
248
+ "value": "nosniff"
249
+ },
250
+ {
251
+ "key": "X-XSS-Protection",
252
+ "value": "1; mode=block"
253
+ },
254
+ {
255
+ "key": "X-Robots-Tag",
256
+ "value": "none"
257
+ },
258
+ {
259
+ "key": "Cache-Control",
260
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
261
+ },
262
+ {
263
+ "key": "Sforce-Limit-Info",
264
+ "value": "api-usage=18/15000"
265
+ },
266
+ {
267
+ "key": "Content-Type",
268
+ "value": "application/json;charset=UTF-8"
269
+ },
270
+ {
271
+ "key": "Vary",
272
+ "value": "Accept-Encoding"
273
+ },
274
+ {
275
+ "key": "Content-Encoding",
276
+ "value": "gzip"
277
+ },
278
+ {
279
+ "key": "Transfer-Encoding",
280
+ "value": "chunked"
281
+ }
282
+ ],
283
+ "cookie": [],
284
+ "body": "{\n \"id\": \"750...\",\n \"operation\": \"query\",\n \"object\": \"Account\",\n \"createdById\": \"005...\",\n \"createdDate\": \"<datetime>\",\n \"systemModstamp\": \"<datetime>\",\n \"state\": \"UploadComplete\",\n \"concurrencyMode\": \"Parallel\",\n \"contentType\": \"CSV\",\n \"apiVersion\": 58,\n \"lineEnding\": \"LF\",\n \"columnDelimiter\": \"COMMA\"\n}"
285
+ }
286
+ ]
287
+ },
288
+ {
289
+ "name": "Abort a Job Query",
290
+ "request": {
291
+ "method": "PATCH",
292
+ "header": [
293
+ {
294
+ "key": "Content-Type",
295
+ "value": "application/json"
296
+ }
297
+ ],
298
+ "body": {
299
+ "mode": "raw",
300
+ "raw": "{\n\t\"state\":\"Aborted\"\n}"
301
+ },
302
+ "url": {
303
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/query/{{_jobId}}",
304
+ "host": [
305
+ "{{_endpoint}}"
306
+ ],
307
+ "path": [
308
+ "services",
309
+ "data",
310
+ "v{{version}}",
311
+ "jobs",
312
+ "query",
313
+ "{{_jobId}}"
314
+ ]
315
+ }
316
+ },
317
+ "response": [
318
+ {
319
+ "name": "Abort a Job Query",
320
+ "originalRequest": {
321
+ "method": "PATCH",
322
+ "header": [
323
+ {
324
+ "key": "Content-Type",
325
+ "value": "application/json"
326
+ }
327
+ ],
328
+ "body": {
329
+ "mode": "raw",
330
+ "raw": "{\n\t\"state\":\"Aborted\"\n}"
331
+ },
332
+ "url": {
333
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/query/{{_jobId}}",
334
+ "host": [
335
+ "{{_endpoint}}"
336
+ ],
337
+ "path": [
338
+ "services",
339
+ "data",
340
+ "v{{version}}",
341
+ "jobs",
342
+ "query",
343
+ "{{_jobId}}"
344
+ ]
345
+ }
346
+ },
347
+ "status": "OK",
348
+ "code": 200,
349
+ "_postman_previewlanguage": "json",
350
+ "header": [
351
+ {
352
+ "key": "Date",
353
+ "value": "Mon, 20 Nov 2023 15:10:26 GMT"
354
+ },
355
+ {
356
+ "key": "Strict-Transport-Security",
357
+ "value": "max-age=63072000; includeSubDomains"
358
+ },
359
+ {
360
+ "key": "X-Content-Type-Options",
361
+ "value": "nosniff"
362
+ },
363
+ {
364
+ "key": "X-XSS-Protection",
365
+ "value": "1; mode=block"
366
+ },
367
+ {
368
+ "key": "X-Robots-Tag",
369
+ "value": "none"
370
+ },
371
+ {
372
+ "key": "Cache-Control",
373
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
374
+ },
375
+ {
376
+ "key": "Sforce-Limit-Info",
377
+ "value": "api-usage=29/15000"
378
+ },
379
+ {
380
+ "key": "Content-Type",
381
+ "value": "application/json;charset=UTF-8"
382
+ },
383
+ {
384
+ "key": "Transfer-Encoding",
385
+ "value": "chunked"
386
+ }
387
+ ],
388
+ "cookie": [],
389
+ "body": "{\n \"id\": \"750...\",\n \"operation\": \"query\",\n \"object\": \"Account\",\n \"createdById\": \"005...\",\n \"createdDate\": \"<datetime>\",\n \"systemModstamp\": \"<datetime>\",\n \"state\": \"Aborted\",\n \"concurrencyMode\": \"Parallel\",\n \"contentType\": \"CSV\",\n \"apiVersion\": 58\n}"
390
+ }
391
+ ]
392
+ },
393
+ {
394
+ "name": "Successful Get Job Info Query",
395
+ "request": {
396
+ "method": "GET",
397
+ "header": [
398
+ {
399
+ "key": "Content-Type",
400
+ "value": "application/json",
401
+ "disabled": true
402
+ }
403
+ ],
404
+ "url": {
405
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/query/{{_jobId}}",
406
+ "host": [
407
+ "{{_endpoint}}"
408
+ ],
409
+ "path": [
410
+ "services",
411
+ "data",
412
+ "v{{version}}",
413
+ "jobs",
414
+ "query",
415
+ "{{_jobId}}"
416
+ ]
417
+ }
418
+ },
419
+ "response": [
420
+ {
421
+ "name": "Successful Get Job Info Query",
422
+ "originalRequest": {
423
+ "method": "GET",
424
+ "header": [
425
+ {
426
+ "key": "Content-Type",
427
+ "value": "application/json",
428
+ "disabled": true
429
+ }
430
+ ],
431
+ "url": {
432
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/query/{{_jobId}}",
433
+ "host": [
434
+ "{{_endpoint}}"
435
+ ],
436
+ "path": [
437
+ "services",
438
+ "data",
439
+ "v{{version}}",
440
+ "jobs",
441
+ "query",
442
+ "{{_jobId}}"
443
+ ]
444
+ }
445
+ },
446
+ "status": "OK",
447
+ "code": 200,
448
+ "_postman_previewlanguage": "json",
449
+ "header": [
450
+ {
451
+ "key": "Date",
452
+ "value": "Mon, 20 Nov 2023 15:06:32 GMT"
453
+ },
454
+ {
455
+ "key": "Strict-Transport-Security",
456
+ "value": "max-age=63072000; includeSubDomains"
457
+ },
458
+ {
459
+ "key": "X-Content-Type-Options",
460
+ "value": "nosniff"
461
+ },
462
+ {
463
+ "key": "X-XSS-Protection",
464
+ "value": "1; mode=block"
465
+ },
466
+ {
467
+ "key": "X-Robots-Tag",
468
+ "value": "none"
469
+ },
470
+ {
471
+ "key": "Cache-Control",
472
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
473
+ },
474
+ {
475
+ "key": "Sforce-Limit-Info",
476
+ "value": "api-usage=18/15000"
477
+ },
478
+ {
479
+ "key": "Content-Type",
480
+ "value": "application/json;charset=UTF-8"
481
+ },
482
+ {
483
+ "key": "Vary",
484
+ "value": "Accept-Encoding"
485
+ },
486
+ {
487
+ "key": "Content-Encoding",
488
+ "value": "gzip"
489
+ },
490
+ {
491
+ "key": "Transfer-Encoding",
492
+ "value": "chunked"
493
+ }
494
+ ],
495
+ "cookie": [],
496
+ "body": "{\n \"id\": \"750...\",\n \"operation\": \"query\",\n \"object\": \"Account\",\n \"createdById\": \"005...\",\n \"createdDate\": \"<datetime>\",\n \"systemModstamp\": \"<datetime>\",\n \"state\": \"JobComplete\",\n \"concurrencyMode\": \"Parallel\",\n \"contentType\": \"CSV\",\n \"apiVersion\": 58,\n \"jobType\": \"V2Query\",\n \"lineEnding\": \"LF\",\n \"columnDelimiter\": \"COMMA\",\n \"numberRecordsProcessed\": 15,\n \"retries\": 0,\n \"totalProcessingTime\": 242\n}"
497
+ }
498
+ ]
499
+ },
500
+ {
501
+ "name": "Delete Job Query",
502
+ "request": {
503
+ "method": "DELETE",
504
+ "header": [
505
+ {
506
+ "key": "Content-Type",
507
+ "value": "application/json",
508
+ "disabled": true
509
+ }
510
+ ],
511
+ "body": {
512
+ "mode": "raw",
513
+ "raw": ""
514
+ },
515
+ "url": {
516
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/query/{{_jobId}}",
517
+ "host": [
518
+ "{{_endpoint}}"
519
+ ],
520
+ "path": [
521
+ "services",
522
+ "data",
523
+ "v{{version}}",
524
+ "jobs",
525
+ "query",
526
+ "{{_jobId}}"
527
+ ]
528
+ }
529
+ },
530
+ "response": [
531
+ {
532
+ "name": "Successful Delete Job Query",
533
+ "originalRequest": {
534
+ "method": "DELETE",
535
+ "header": [
536
+ {
537
+ "key": "Content-Type",
538
+ "value": "application/json",
539
+ "disabled": true
540
+ }
541
+ ],
542
+ "body": {
543
+ "mode": "raw",
544
+ "raw": ""
545
+ },
546
+ "url": {
547
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/query/{{_jobId}}",
548
+ "host": [
549
+ "{{_endpoint}}"
550
+ ],
551
+ "path": [
552
+ "services",
553
+ "data",
554
+ "v{{version}}",
555
+ "jobs",
556
+ "query",
557
+ "{{_jobId}}"
558
+ ]
559
+ }
560
+ },
561
+ "status": "No Content",
562
+ "code": 204,
563
+ "_postman_previewlanguage": "plain",
564
+ "header": [
565
+ {
566
+ "key": "Date",
567
+ "value": "Mon, 20 Nov 2023 15:08:40 GMT"
568
+ },
569
+ {
570
+ "key": "Strict-Transport-Security",
571
+ "value": "max-age=63072000; includeSubDomains"
572
+ },
573
+ {
574
+ "key": "X-Content-Type-Options",
575
+ "value": "nosniff"
576
+ },
577
+ {
578
+ "key": "X-XSS-Protection",
579
+ "value": "1; mode=block"
580
+ },
581
+ {
582
+ "key": "Content-Security-Policy",
583
+ "value": "upgrade-insecure-requests"
584
+ },
585
+ {
586
+ "key": "X-Robots-Tag",
587
+ "value": "none"
588
+ },
589
+ {
590
+ "key": "Cache-Control",
591
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
592
+ },
593
+ {
594
+ "key": "Sforce-Limit-Info",
595
+ "value": "api-usage=23/15000"
596
+ }
597
+ ],
598
+ "cookie": [],
599
+ "body": null
600
+ }
601
+ ]
602
+ },
603
+ {
604
+ "name": "Get Job Query Result",
605
+ "request": {
606
+ "method": "GET",
607
+ "header": [
608
+ {
609
+ "key": "Content-Type",
610
+ "value": "application/json"
611
+ },
612
+ {
613
+ "key": "Accept",
614
+ "type": "text",
615
+ "value": "test/csv"
616
+ }
617
+ ],
618
+ "url": {
619
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/query/{{_jobId}}/results",
620
+ "host": [
621
+ "{{_endpoint}}"
622
+ ],
623
+ "path": [
624
+ "services",
625
+ "data",
626
+ "v{{version}}",
627
+ "jobs",
628
+ "query",
629
+ "{{_jobId}}",
630
+ "results"
631
+ ],
632
+ "query": [
633
+ {
634
+ "key": "locator",
635
+ "value": "",
636
+ "disabled": true
637
+ },
638
+ {
639
+ "key": "maxRecords",
640
+ "value": "",
641
+ "disabled": true
642
+ }
643
+ ]
644
+ }
645
+ },
646
+ "response": [
647
+ {
648
+ "name": "Successful Get Job Query Result",
649
+ "originalRequest": {
650
+ "method": "GET",
651
+ "header": [
652
+ {
653
+ "key": "Content-Type",
654
+ "value": "application/json"
655
+ },
656
+ {
657
+ "key": "Accept",
658
+ "value": "test/csv"
659
+ }
660
+ ],
661
+ "url": {
662
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/query/{{_jobId}}/results",
663
+ "host": [
664
+ "{{_endpoint}}"
665
+ ],
666
+ "path": [
667
+ "services",
668
+ "data",
669
+ "v{{version}}",
670
+ "jobs",
671
+ "query",
672
+ "{{_jobId}}",
673
+ "results"
674
+ ],
675
+ "query": [
676
+ {
677
+ "key": "locator",
678
+ "value": "",
679
+ "disabled": true
680
+ },
681
+ {
682
+ "key": "maxRecords",
683
+ "value": "",
684
+ "disabled": true
685
+ }
686
+ ]
687
+ }
688
+ },
689
+ "status": "OK",
690
+ "code": 200,
691
+ "_postman_previewlanguage": "plain",
692
+ "header": [
693
+ {
694
+ "key": "Date",
695
+ "value": "Mon, 20 Nov 2023 15:07:00 GMT"
696
+ },
697
+ {
698
+ "key": "Strict-Transport-Security",
699
+ "value": "max-age=63072000; includeSubDomains"
700
+ },
701
+ {
702
+ "key": "X-Content-Type-Options",
703
+ "value": "nosniff"
704
+ },
705
+ {
706
+ "key": "X-XSS-Protection",
707
+ "value": "1; mode=block"
708
+ },
709
+ {
710
+ "key": "X-Robots-Tag",
711
+ "value": "none"
712
+ },
713
+ {
714
+ "key": "Cache-Control",
715
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
716
+ },
717
+ {
718
+ "key": "Sforce-Limit-Info",
719
+ "value": "api-usage=19/15000"
720
+ },
721
+ {
722
+ "key": "Sforce-Locator",
723
+ "value": "null"
724
+ },
725
+ {
726
+ "key": "Sforce-NumberOfRecords",
727
+ "value": "15"
728
+ },
729
+ {
730
+ "key": "Content-Type",
731
+ "value": "text/csv"
732
+ },
733
+ {
734
+ "key": "Vary",
735
+ "value": "Accept-Encoding"
736
+ },
737
+ {
738
+ "key": "Content-Encoding",
739
+ "value": "gzip"
740
+ },
741
+ {
742
+ "key": "Transfer-Encoding",
743
+ "value": "chunked"
744
+ }
745
+ ],
746
+ "cookie": [],
747
+ "body": "\"Id\"\n\"001...\"\n"
748
+ }
749
+ ]
750
+ },
751
+ {
752
+ "name": "Get Parallel Results for a Query Job",
753
+ "request": {
754
+ "method": "GET",
755
+ "header": [
756
+ {
757
+ "key": "Content-Type",
758
+ "value": "application/json"
759
+ },
760
+ {
761
+ "key": "Accept",
762
+ "value": "application/json"
763
+ }
764
+ ],
765
+ "url": {
766
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/query/{{_jobId}}/resultPages",
767
+ "host": [
768
+ "{{_endpoint}}"
769
+ ],
770
+ "path": [
771
+ "services",
772
+ "data",
773
+ "v{{version}}",
774
+ "jobs",
775
+ "query",
776
+ "{{_jobId}}",
777
+ "resultPages"
778
+ ]
779
+ },
780
+ "description": "Retrieves a set of up to 5 job results pages for parallel download."
781
+ },
782
+ "response": [
783
+ {
784
+ "name": "Get Parallel Results for a Query Job",
785
+ "originalRequest": {
786
+ "method": "GET",
787
+ "header": [
788
+ {
789
+ "key": "Content-Type",
790
+ "value": "application/json"
791
+ },
792
+ {
793
+ "key": "Accept",
794
+ "value": "application/json"
795
+ }
796
+ ],
797
+ "url": {
798
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/query/{{_jobId}}/resultPages",
799
+ "host": [
800
+ "{{_endpoint}}"
801
+ ],
802
+ "path": [
803
+ "services",
804
+ "data",
805
+ "v{{version}}",
806
+ "jobs",
807
+ "query",
808
+ "{{_jobId}}",
809
+ "resultPages"
810
+ ]
811
+ }
812
+ },
813
+ "_postman_previewlanguage": "Text",
814
+ "header": null,
815
+ "cookie": [],
816
+ "body": "{\n \"resultPages\": [\n {\n \"resultLink\": \"/jobs/query/750R0000000zxr8IAA/results?locator=aBcDeFg4N\"\n },\n {\n \"resultLink\": \"/jobs/query/750R0000000zxr8IAA/results?locator=HiJkLmN4N\"\n },\n {\n \"resultLink\": \"/jobs/query/750R0000000zxr8IAA/results?locator=oPQrStU4N\"\n },\n {\n \"resultLink\": \"/jobs/query/750R0000000zxr8IAA/results?locator=vWxYzz4N\"\n },\n {\n \"resultLink\": \"/jobs/query/750R0000000zxr8IAA/results?locator=NiKmABC4N\"\n }\n ],\n \"nextRecordsUrl\": \"/jobs/query/750R0000000zxr8IAA/resultpages?locator=YcApWm4N\",\n \"done\": false\n}"
817
+ }
818
+ ]
819
+ },
820
+ {
821
+ "name": "Get All Query Jobs",
822
+ "request": {
823
+ "method": "GET",
824
+ "header": [
825
+ {
826
+ "key": "Content-Type",
827
+ "value": "application/json"
828
+ }
829
+ ],
830
+ "url": {
831
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/query?isPkChunkingEnabled=false&jobType=&concurrencyMode=&queryLocator=",
832
+ "host": [
833
+ "{{_endpoint}}"
834
+ ],
835
+ "path": [
836
+ "services",
837
+ "data",
838
+ "v{{version}}",
839
+ "jobs",
840
+ "query"
841
+ ],
842
+ "query": [
843
+ {
844
+ "key": "isPkChunkingEnabled",
845
+ "value": "false",
846
+ "description": "If set to true, the request only returns information about jobs where PK Chunking is enabled"
847
+ },
848
+ {
849
+ "key": "jobType",
850
+ "value": "",
851
+ "description": "BigObjectIngest Classic V2Query"
852
+ },
853
+ {
854
+ "key": "concurrencyMode",
855
+ "value": "",
856
+ "description": "serial parallel"
857
+ },
858
+ {
859
+ "key": "queryLocator",
860
+ "value": "",
861
+ "description": "use the value from the nextRecordsUrl from the previous set"
862
+ }
863
+ ]
864
+ }
865
+ },
866
+ "response": [
867
+ {
868
+ "name": "Successful Get All Query Jobs",
869
+ "originalRequest": {
870
+ "method": "GET",
871
+ "header": [
872
+ {
873
+ "key": "Content-Type",
874
+ "value": "application/json"
875
+ }
876
+ ],
877
+ "url": {
878
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/query?isPkChunkingEnabled=false&jobType&concurrencyMode&queryLocator",
879
+ "host": [
880
+ "{{_endpoint}}"
881
+ ],
882
+ "path": [
883
+ "services",
884
+ "data",
885
+ "v{{version}}",
886
+ "jobs",
887
+ "query"
888
+ ],
889
+ "query": [
890
+ {
891
+ "key": "isPkChunkingEnabled",
892
+ "value": "false",
893
+ "description": "If set to true, the request only returns information about jobs where PK Chunking is enabled"
894
+ },
895
+ {
896
+ "key": "jobType",
897
+ "value": null,
898
+ "description": "BigObjectIngest Classic V2Query"
899
+ },
900
+ {
901
+ "key": "concurrencyMode",
902
+ "value": null,
903
+ "description": "serial parallel"
904
+ },
905
+ {
906
+ "key": "queryLocator",
907
+ "value": null,
908
+ "description": "use the value from the nextRecordsUrl from the previous set"
909
+ }
910
+ ]
911
+ }
912
+ },
913
+ "status": "OK",
914
+ "code": 200,
915
+ "_postman_previewlanguage": "json",
916
+ "header": [
917
+ {
918
+ "key": "Date",
919
+ "value": "Mon, 20 Nov 2023 15:07:54 GMT"
920
+ },
921
+ {
922
+ "key": "Strict-Transport-Security",
923
+ "value": "max-age=63072000; includeSubDomains"
924
+ },
925
+ {
926
+ "key": "X-Content-Type-Options",
927
+ "value": "nosniff"
928
+ },
929
+ {
930
+ "key": "X-XSS-Protection",
931
+ "value": "1; mode=block"
932
+ },
933
+ {
934
+ "key": "X-Robots-Tag",
935
+ "value": "none"
936
+ },
937
+ {
938
+ "key": "Cache-Control",
939
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
940
+ },
941
+ {
942
+ "key": "Sforce-Limit-Info",
943
+ "value": "api-usage=23/15000"
944
+ },
945
+ {
946
+ "key": "Content-Type",
947
+ "value": "application/json;charset=UTF-8"
948
+ },
949
+ {
950
+ "key": "Vary",
951
+ "value": "Accept-Encoding"
952
+ },
953
+ {
954
+ "key": "Content-Encoding",
955
+ "value": "gzip"
956
+ },
957
+ {
958
+ "key": "Transfer-Encoding",
959
+ "value": "chunked"
960
+ }
961
+ ],
962
+ "cookie": [],
963
+ "body": "{\n \"done\": true,\n \"nextRecordsUrl\": null,\n \"records\": [\n {\n \"id\": \"750...\",\n \"operation\": \"insert\",\n \"object\": \"Account\",\n \"createdById\": \"005...\",\n \"createdDate\": \"<datetime>\",\n \"systemModstamp\": \"<datetime>\",\n \"state\": \"Open\",\n \"concurrencyMode\": \"Parallel\",\n \"contentType\": \"CSV\",\n \"apiVersion\": 58,\n \"jobType\": \"Classic\"\n },\n ]\n}"
964
+ }
965
+ ]
966
+ },
967
+ {
968
+ "name": "Create job",
969
+ "event": [
970
+ {
971
+ "listen": "test",
972
+ "script": {
973
+ "exec": [
974
+ "const context = pm.environment.name ? pm.environment : pm.collectionVariables;",
975
+ "",
976
+ "const response = JSON.parse(pm.response.text())",
977
+ "context.set(\"_jobId\", response.id);"
978
+ ],
979
+ "type": "text/javascript"
980
+ }
981
+ }
982
+ ],
983
+ "request": {
984
+ "method": "POST",
985
+ "header": [
986
+ {
987
+ "key": "Content-Type",
988
+ "value": "application/json"
989
+ }
990
+ ],
991
+ "body": {
992
+ "mode": "raw",
993
+ "raw": "{\n \"object\": \"Asset\",\n \"operation\": \"update\"\n}"
994
+ },
995
+ "url": {
996
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest",
997
+ "host": [
998
+ "{{_endpoint}}"
999
+ ],
1000
+ "path": [
1001
+ "services",
1002
+ "data",
1003
+ "v{{version}}",
1004
+ "jobs",
1005
+ "ingest"
1006
+ ]
1007
+ }
1008
+ },
1009
+ "response": [
1010
+ {
1011
+ "name": "Successful Create job",
1012
+ "originalRequest": {
1013
+ "method": "POST",
1014
+ "header": [
1015
+ {
1016
+ "key": "Content-Type",
1017
+ "value": "application/json"
1018
+ }
1019
+ ],
1020
+ "body": {
1021
+ "mode": "raw",
1022
+ "raw": "{\n \"object\": \"Account\",\n \"operation\": \"insert\"\n}"
1023
+ },
1024
+ "url": {
1025
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest",
1026
+ "host": [
1027
+ "{{_endpoint}}"
1028
+ ],
1029
+ "path": [
1030
+ "services",
1031
+ "data",
1032
+ "v{{version}}",
1033
+ "jobs",
1034
+ "ingest"
1035
+ ]
1036
+ }
1037
+ },
1038
+ "status": "OK",
1039
+ "code": 200,
1040
+ "_postman_previewlanguage": "json",
1041
+ "header": [
1042
+ {
1043
+ "key": "Date",
1044
+ "value": "Mon, 20 Nov 2023 14:58:56 GMT"
1045
+ },
1046
+ {
1047
+ "key": "Strict-Transport-Security",
1048
+ "value": "max-age=63072000; includeSubDomains"
1049
+ },
1050
+ {
1051
+ "key": "X-Content-Type-Options",
1052
+ "value": "nosniff"
1053
+ },
1054
+ {
1055
+ "key": "X-XSS-Protection",
1056
+ "value": "1; mode=block"
1057
+ },
1058
+ {
1059
+ "key": "X-Robots-Tag",
1060
+ "value": "none"
1061
+ },
1062
+ {
1063
+ "key": "Cache-Control",
1064
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1065
+ },
1066
+ {
1067
+ "key": "Sforce-Limit-Info",
1068
+ "value": "api-usage=1/15000"
1069
+ },
1070
+ {
1071
+ "key": "Content-Type",
1072
+ "value": "application/json;charset=UTF-8"
1073
+ },
1074
+ {
1075
+ "key": "Vary",
1076
+ "value": "Accept-Encoding"
1077
+ },
1078
+ {
1079
+ "key": "Content-Encoding",
1080
+ "value": "gzip"
1081
+ },
1082
+ {
1083
+ "key": "Transfer-Encoding",
1084
+ "value": "chunked"
1085
+ }
1086
+ ],
1087
+ "cookie": [],
1088
+ "body": "{\n \"id\": \"750...\",\n \"operation\": \"insert\",\n \"object\": \"Account\",\n \"createdById\": \"005...\",\n \"createdDate\": \"<datetime>\",\n \"systemModstamp\": \"<datetime>\",\n \"state\": \"Open\",\n \"concurrencyMode\": \"Parallel\",\n \"contentType\": \"CSV\",\n \"apiVersion\": 58,\n \"contentUrl\": \"services/data/v58.0/jobs/ingest/750.../batches\",\n \"lineEnding\": \"LF\",\n \"columnDelimiter\": \"COMMA\"\n}"
1089
+ }
1090
+ ]
1091
+ },
1092
+ {
1093
+ "name": "Upload Job Data",
1094
+ "request": {
1095
+ "method": "PUT",
1096
+ "header": [
1097
+ {
1098
+ "key": "Content-Type",
1099
+ "value": "text/csv"
1100
+ }
1101
+ ],
1102
+ "body": {
1103
+ "mode": "file",
1104
+ "file": {
1105
+ "src": ""
1106
+ }
1107
+ },
1108
+ "url": {
1109
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest/{{_jobId}}/batches",
1110
+ "host": [
1111
+ "{{_endpoint}}"
1112
+ ],
1113
+ "path": [
1114
+ "services",
1115
+ "data",
1116
+ "v{{version}}",
1117
+ "jobs",
1118
+ "ingest",
1119
+ "{{_jobId}}",
1120
+ "batches"
1121
+ ]
1122
+ }
1123
+ },
1124
+ "response": [
1125
+ {
1126
+ "name": "Successful Upload Job Data",
1127
+ "originalRequest": {
1128
+ "method": "PUT",
1129
+ "header": [
1130
+ {
1131
+ "key": "Content-Type",
1132
+ "value": "text/csv"
1133
+ }
1134
+ ],
1135
+ "body": {
1136
+ "mode": "file",
1137
+ "file": {
1138
+ "src": "/Users/username/Downloads/account.csv"
1139
+ }
1140
+ },
1141
+ "url": {
1142
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest/{{_jobId}}/batches",
1143
+ "host": [
1144
+ "{{_endpoint}}"
1145
+ ],
1146
+ "path": [
1147
+ "services",
1148
+ "data",
1149
+ "v{{version}}",
1150
+ "jobs",
1151
+ "ingest",
1152
+ "{{_jobId}}",
1153
+ "batches"
1154
+ ]
1155
+ }
1156
+ },
1157
+ "status": "Created",
1158
+ "code": 201,
1159
+ "_postman_previewlanguage": "plain",
1160
+ "header": [
1161
+ {
1162
+ "key": "Date",
1163
+ "value": "Mon, 20 Nov 2023 14:59:59 GMT"
1164
+ },
1165
+ {
1166
+ "key": "Strict-Transport-Security",
1167
+ "value": "max-age=63072000; includeSubDomains"
1168
+ },
1169
+ {
1170
+ "key": "X-Content-Type-Options",
1171
+ "value": "nosniff"
1172
+ },
1173
+ {
1174
+ "key": "X-XSS-Protection",
1175
+ "value": "1; mode=block"
1176
+ },
1177
+ {
1178
+ "key": "Content-Security-Policy",
1179
+ "value": "upgrade-insecure-requests"
1180
+ },
1181
+ {
1182
+ "key": "X-Robots-Tag",
1183
+ "value": "none"
1184
+ },
1185
+ {
1186
+ "key": "Cache-Control",
1187
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1188
+ },
1189
+ {
1190
+ "key": "Sforce-Limit-Info",
1191
+ "value": "api-usage=2/15000"
1192
+ },
1193
+ {
1194
+ "key": "Transfer-Encoding",
1195
+ "value": "chunked"
1196
+ }
1197
+ ],
1198
+ "cookie": [],
1199
+ "body": null
1200
+ }
1201
+ ]
1202
+ },
1203
+ {
1204
+ "name": "Close or Abort a Job",
1205
+ "request": {
1206
+ "method": "PATCH",
1207
+ "header": [
1208
+ {
1209
+ "key": "Content-Type",
1210
+ "value": "application/json"
1211
+ }
1212
+ ],
1213
+ "body": {
1214
+ "mode": "raw",
1215
+ "raw": "{\n\t\"state\":\"UploadComplete\"\n}"
1216
+ },
1217
+ "url": {
1218
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest/{{_jobId}}",
1219
+ "host": [
1220
+ "{{_endpoint}}"
1221
+ ],
1222
+ "path": [
1223
+ "services",
1224
+ "data",
1225
+ "v{{version}}",
1226
+ "jobs",
1227
+ "ingest",
1228
+ "{{_jobId}}"
1229
+ ]
1230
+ }
1231
+ },
1232
+ "response": [
1233
+ {
1234
+ "name": "Successful Close or Abort a Job",
1235
+ "originalRequest": {
1236
+ "method": "PATCH",
1237
+ "header": [
1238
+ {
1239
+ "key": "Content-Type",
1240
+ "value": "application/json"
1241
+ }
1242
+ ],
1243
+ "body": {
1244
+ "mode": "raw",
1245
+ "raw": "{\n\t\"state\":\"UploadComplete\"\n}"
1246
+ },
1247
+ "url": {
1248
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest/{{_jobId}}",
1249
+ "host": [
1250
+ "{{_endpoint}}"
1251
+ ],
1252
+ "path": [
1253
+ "services",
1254
+ "data",
1255
+ "v{{version}}",
1256
+ "jobs",
1257
+ "ingest",
1258
+ "{{_jobId}}"
1259
+ ]
1260
+ }
1261
+ },
1262
+ "status": "OK",
1263
+ "code": 200,
1264
+ "_postman_previewlanguage": "json",
1265
+ "header": [
1266
+ {
1267
+ "key": "Date",
1268
+ "value": "Mon, 20 Nov 2023 15:00:44 GMT"
1269
+ },
1270
+ {
1271
+ "key": "Strict-Transport-Security",
1272
+ "value": "max-age=63072000; includeSubDomains"
1273
+ },
1274
+ {
1275
+ "key": "X-Content-Type-Options",
1276
+ "value": "nosniff"
1277
+ },
1278
+ {
1279
+ "key": "X-XSS-Protection",
1280
+ "value": "1; mode=block"
1281
+ },
1282
+ {
1283
+ "key": "X-Robots-Tag",
1284
+ "value": "none"
1285
+ },
1286
+ {
1287
+ "key": "Cache-Control",
1288
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1289
+ },
1290
+ {
1291
+ "key": "Sforce-Limit-Info",
1292
+ "value": "api-usage=2/15000"
1293
+ },
1294
+ {
1295
+ "key": "Content-Type",
1296
+ "value": "application/json;charset=UTF-8"
1297
+ },
1298
+ {
1299
+ "key": "Transfer-Encoding",
1300
+ "value": "chunked"
1301
+ }
1302
+ ],
1303
+ "cookie": [],
1304
+ "body": "{\n \"id\": \"750...\",\n \"operation\": \"insert\",\n \"object\": \"Account\",\n \"createdById\": \"005...\",\n \"createdDate\": \"<datetime>\",\n \"systemModstamp\": \"<datetime>\",\n \"state\": \"UploadComplete\",\n \"concurrencyMode\": \"Parallel\",\n \"contentType\": \"CSV\",\n \"apiVersion\": 58\n}"
1305
+ }
1306
+ ]
1307
+ },
1308
+ {
1309
+ "name": "Delete Job",
1310
+ "request": {
1311
+ "method": "DELETE",
1312
+ "header": [
1313
+ {
1314
+ "key": "Content-Type",
1315
+ "value": "application/json",
1316
+ "disabled": true
1317
+ }
1318
+ ],
1319
+ "body": {
1320
+ "mode": "raw",
1321
+ "raw": ""
1322
+ },
1323
+ "url": {
1324
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest/{{_jobId}}",
1325
+ "host": [
1326
+ "{{_endpoint}}"
1327
+ ],
1328
+ "path": [
1329
+ "services",
1330
+ "data",
1331
+ "v{{version}}",
1332
+ "jobs",
1333
+ "ingest",
1334
+ "{{_jobId}}"
1335
+ ]
1336
+ }
1337
+ },
1338
+ "response": [
1339
+ {
1340
+ "name": "Successful Delete Job",
1341
+ "originalRequest": {
1342
+ "method": "DELETE",
1343
+ "header": [
1344
+ {
1345
+ "key": "Content-Type",
1346
+ "value": "application/json",
1347
+ "disabled": true
1348
+ }
1349
+ ],
1350
+ "body": {
1351
+ "mode": "raw",
1352
+ "raw": ""
1353
+ },
1354
+ "url": {
1355
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest/{{_jobId}}",
1356
+ "host": [
1357
+ "{{_endpoint}}"
1358
+ ],
1359
+ "path": [
1360
+ "services",
1361
+ "data",
1362
+ "v{{version}}",
1363
+ "jobs",
1364
+ "ingest",
1365
+ "{{_jobId}}"
1366
+ ]
1367
+ }
1368
+ },
1369
+ "status": "No Content",
1370
+ "code": 204,
1371
+ "_postman_previewlanguage": "plain",
1372
+ "header": [
1373
+ {
1374
+ "key": "Date",
1375
+ "value": "Mon, 20 Nov 2023 15:01:36 GMT"
1376
+ },
1377
+ {
1378
+ "key": "Strict-Transport-Security",
1379
+ "value": "max-age=63072000; includeSubDomains"
1380
+ },
1381
+ {
1382
+ "key": "X-Content-Type-Options",
1383
+ "value": "nosniff"
1384
+ },
1385
+ {
1386
+ "key": "X-XSS-Protection",
1387
+ "value": "1; mode=block"
1388
+ },
1389
+ {
1390
+ "key": "Content-Security-Policy",
1391
+ "value": "upgrade-insecure-requests"
1392
+ },
1393
+ {
1394
+ "key": "X-Robots-Tag",
1395
+ "value": "none"
1396
+ },
1397
+ {
1398
+ "key": "Cache-Control",
1399
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1400
+ },
1401
+ {
1402
+ "key": "Sforce-Limit-Info",
1403
+ "value": "api-usage=4/15000"
1404
+ }
1405
+ ],
1406
+ "cookie": [],
1407
+ "body": null
1408
+ }
1409
+ ]
1410
+ },
1411
+ {
1412
+ "name": "Get Job Info",
1413
+ "request": {
1414
+ "method": "GET",
1415
+ "header": [
1416
+ {
1417
+ "key": "Content-Type",
1418
+ "value": "application/json",
1419
+ "disabled": true
1420
+ }
1421
+ ],
1422
+ "url": {
1423
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest/{{_jobId}}",
1424
+ "host": [
1425
+ "{{_endpoint}}"
1426
+ ],
1427
+ "path": [
1428
+ "services",
1429
+ "data",
1430
+ "v{{version}}",
1431
+ "jobs",
1432
+ "ingest",
1433
+ "{{_jobId}}"
1434
+ ]
1435
+ }
1436
+ },
1437
+ "response": [
1438
+ {
1439
+ "name": "Successful Get Job Info",
1440
+ "originalRequest": {
1441
+ "method": "GET",
1442
+ "header": [
1443
+ {
1444
+ "key": "Content-Type",
1445
+ "value": "application/json",
1446
+ "disabled": true
1447
+ }
1448
+ ],
1449
+ "url": {
1450
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest/{{_jobId}}",
1451
+ "host": [
1452
+ "{{_endpoint}}"
1453
+ ],
1454
+ "path": [
1455
+ "services",
1456
+ "data",
1457
+ "v{{version}}",
1458
+ "jobs",
1459
+ "ingest",
1460
+ "{{_jobId}}"
1461
+ ]
1462
+ }
1463
+ },
1464
+ "status": "OK",
1465
+ "code": 200,
1466
+ "_postman_previewlanguage": "json",
1467
+ "header": [
1468
+ {
1469
+ "key": "Date",
1470
+ "value": "Mon, 20 Nov 2023 15:03:34 GMT"
1471
+ },
1472
+ {
1473
+ "key": "Strict-Transport-Security",
1474
+ "value": "max-age=63072000; includeSubDomains"
1475
+ },
1476
+ {
1477
+ "key": "X-Content-Type-Options",
1478
+ "value": "nosniff"
1479
+ },
1480
+ {
1481
+ "key": "X-XSS-Protection",
1482
+ "value": "1; mode=block"
1483
+ },
1484
+ {
1485
+ "key": "X-Robots-Tag",
1486
+ "value": "none"
1487
+ },
1488
+ {
1489
+ "key": "Cache-Control",
1490
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1491
+ },
1492
+ {
1493
+ "key": "Sforce-Limit-Info",
1494
+ "value": "api-usage=8/15000"
1495
+ },
1496
+ {
1497
+ "key": "Content-Type",
1498
+ "value": "application/json;charset=UTF-8"
1499
+ },
1500
+ {
1501
+ "key": "Vary",
1502
+ "value": "Accept-Encoding"
1503
+ },
1504
+ {
1505
+ "key": "Content-Encoding",
1506
+ "value": "gzip"
1507
+ },
1508
+ {
1509
+ "key": "Transfer-Encoding",
1510
+ "value": "chunked"
1511
+ }
1512
+ ],
1513
+ "cookie": [],
1514
+ "body": "{\n \"id\": \"750...\",\n \"operation\": \"insert\",\n \"object\": \"Asset\",\n \"createdById\": \"005...\",\n \"createdDate\": \"<datetime>\",\n \"systemModstamp\": \"<datetime>\",\n \"state\": \"JobComplete\",\n \"concurrencyMode\": \"Parallel\",\n \"contentType\": \"CSV\",\n \"apiVersion\": 58,\n \"jobType\": \"V2Ingest\",\n \"lineEnding\": \"LF\",\n \"columnDelimiter\": \"COMMA\",\n \"numberRecordsProcessed\": 1,\n \"numberRecordsFailed\": 1,\n \"retries\": 0,\n \"totalProcessingTime\": 100,\n \"apiActiveProcessingTime\": 43,\n \"apexProcessingTime\": 0\n}"
1515
+ }
1516
+ ]
1517
+ },
1518
+ {
1519
+ "name": "Get All Jobs",
1520
+ "request": {
1521
+ "method": "GET",
1522
+ "header": [
1523
+ {
1524
+ "key": "Content-Type",
1525
+ "value": "application/json",
1526
+ "disabled": true
1527
+ }
1528
+ ],
1529
+ "url": {
1530
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest",
1531
+ "host": [
1532
+ "{{_endpoint}}"
1533
+ ],
1534
+ "path": [
1535
+ "services",
1536
+ "data",
1537
+ "v{{version}}",
1538
+ "jobs",
1539
+ "ingest"
1540
+ ]
1541
+ }
1542
+ },
1543
+ "response": [
1544
+ {
1545
+ "name": "Successfull Get All Jobs",
1546
+ "originalRequest": {
1547
+ "method": "GET",
1548
+ "header": [
1549
+ {
1550
+ "key": "Content-Type",
1551
+ "value": "application/json",
1552
+ "disabled": true
1553
+ }
1554
+ ],
1555
+ "url": {
1556
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest",
1557
+ "host": [
1558
+ "{{_endpoint}}"
1559
+ ],
1560
+ "path": [
1561
+ "services",
1562
+ "data",
1563
+ "v{{version}}",
1564
+ "jobs",
1565
+ "ingest"
1566
+ ]
1567
+ }
1568
+ },
1569
+ "status": "OK",
1570
+ "code": 200,
1571
+ "_postman_previewlanguage": "json",
1572
+ "header": [
1573
+ {
1574
+ "key": "Date",
1575
+ "value": "Mon, 20 Nov 2023 15:02:02 GMT"
1576
+ },
1577
+ {
1578
+ "key": "Strict-Transport-Security",
1579
+ "value": "max-age=63072000; includeSubDomains"
1580
+ },
1581
+ {
1582
+ "key": "X-Content-Type-Options",
1583
+ "value": "nosniff"
1584
+ },
1585
+ {
1586
+ "key": "X-XSS-Protection",
1587
+ "value": "1; mode=block"
1588
+ },
1589
+ {
1590
+ "key": "X-Robots-Tag",
1591
+ "value": "none"
1592
+ },
1593
+ {
1594
+ "key": "Cache-Control",
1595
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1596
+ },
1597
+ {
1598
+ "key": "Sforce-Limit-Info",
1599
+ "value": "api-usage=4/15000"
1600
+ },
1601
+ {
1602
+ "key": "Content-Type",
1603
+ "value": "application/json;charset=UTF-8"
1604
+ },
1605
+ {
1606
+ "key": "Vary",
1607
+ "value": "Accept-Encoding"
1608
+ },
1609
+ {
1610
+ "key": "Content-Encoding",
1611
+ "value": "gzip"
1612
+ },
1613
+ {
1614
+ "key": "Transfer-Encoding",
1615
+ "value": "chunked"
1616
+ }
1617
+ ],
1618
+ "cookie": [],
1619
+ "body": "{\n \"done\": true,\n \"nextRecordsUrl\": null,\n \"records\": [\n {\n \"id\": \"750...\",\n \"operation\": \"insert\",\n \"object\": \"Account\",\n \"createdById\": \"005...\",\n \"createdDate\": \"<datetime>\",\n \"systemModstamp\": \"<datetime>\",\n \"state\": \"Open\",\n \"concurrencyMode\": \"Parallel\",\n \"contentType\": \"CSV\",\n \"apiVersion\": 58,\n \"jobType\": \"Classic\"\n }\n ]\n}"
1620
+ }
1621
+ ]
1622
+ },
1623
+ {
1624
+ "name": "Get Job Successful Record Results",
1625
+ "request": {
1626
+ "method": "GET",
1627
+ "header": [
1628
+ {
1629
+ "key": "Content-Type",
1630
+ "value": "application/json",
1631
+ "disabled": true
1632
+ }
1633
+ ],
1634
+ "url": {
1635
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest/{{_jobId}}/successfulResults",
1636
+ "host": [
1637
+ "{{_endpoint}}"
1638
+ ],
1639
+ "path": [
1640
+ "services",
1641
+ "data",
1642
+ "v{{version}}",
1643
+ "jobs",
1644
+ "ingest",
1645
+ "{{_jobId}}",
1646
+ "successfulResults"
1647
+ ]
1648
+ }
1649
+ },
1650
+ "response": [
1651
+ {
1652
+ "name": "Successful Get Job Successful Record Results",
1653
+ "originalRequest": {
1654
+ "method": "GET",
1655
+ "header": [
1656
+ {
1657
+ "key": "Content-Type",
1658
+ "value": "application/json",
1659
+ "disabled": true
1660
+ }
1661
+ ],
1662
+ "url": {
1663
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest/{{_jobId}}/successfulResults",
1664
+ "host": [
1665
+ "{{_endpoint}}"
1666
+ ],
1667
+ "path": [
1668
+ "services",
1669
+ "data",
1670
+ "v{{version}}",
1671
+ "jobs",
1672
+ "ingest",
1673
+ "{{_jobId}}",
1674
+ "successfulResults"
1675
+ ]
1676
+ }
1677
+ },
1678
+ "status": "OK",
1679
+ "code": 200,
1680
+ "_postman_previewlanguage": "plain",
1681
+ "header": [
1682
+ {
1683
+ "key": "Date",
1684
+ "value": "Mon, 20 Nov 2023 15:04:15 GMT"
1685
+ },
1686
+ {
1687
+ "key": "Strict-Transport-Security",
1688
+ "value": "max-age=63072000; includeSubDomains"
1689
+ },
1690
+ {
1691
+ "key": "X-Content-Type-Options",
1692
+ "value": "nosniff"
1693
+ },
1694
+ {
1695
+ "key": "X-XSS-Protection",
1696
+ "value": "1; mode=block"
1697
+ },
1698
+ {
1699
+ "key": "X-Robots-Tag",
1700
+ "value": "none"
1701
+ },
1702
+ {
1703
+ "key": "Cache-Control",
1704
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1705
+ },
1706
+ {
1707
+ "key": "Sforce-Limit-Info",
1708
+ "value": "api-usage=12/15000"
1709
+ },
1710
+ {
1711
+ "key": "Content-Type",
1712
+ "value": "text/csv"
1713
+ },
1714
+ {
1715
+ "key": "Vary",
1716
+ "value": "Accept-Encoding"
1717
+ },
1718
+ {
1719
+ "key": "Content-Encoding",
1720
+ "value": "gzip"
1721
+ },
1722
+ {
1723
+ "key": "Transfer-Encoding",
1724
+ "value": "chunked"
1725
+ }
1726
+ ],
1727
+ "cookie": [],
1728
+ "body": "\"sf__Id\",\"sf__Created\",Name\n"
1729
+ }
1730
+ ]
1731
+ },
1732
+ {
1733
+ "name": "Get Job Failed Record Results",
1734
+ "request": {
1735
+ "method": "GET",
1736
+ "header": [
1737
+ {
1738
+ "key": "Content-Type",
1739
+ "value": "application/json",
1740
+ "disabled": true
1741
+ }
1742
+ ],
1743
+ "url": {
1744
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest/{{_jobId}}/failedResults",
1745
+ "host": [
1746
+ "{{_endpoint}}"
1747
+ ],
1748
+ "path": [
1749
+ "services",
1750
+ "data",
1751
+ "v{{version}}",
1752
+ "jobs",
1753
+ "ingest",
1754
+ "{{_jobId}}",
1755
+ "failedResults"
1756
+ ]
1757
+ }
1758
+ },
1759
+ "response": [
1760
+ {
1761
+ "name": "Successful Get Job Failed Record Results",
1762
+ "originalRequest": {
1763
+ "method": "GET",
1764
+ "header": [
1765
+ {
1766
+ "key": "Content-Type",
1767
+ "value": "application/json",
1768
+ "disabled": true
1769
+ }
1770
+ ],
1771
+ "url": {
1772
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest/{{_jobId}}/failedResults",
1773
+ "host": [
1774
+ "{{_endpoint}}"
1775
+ ],
1776
+ "path": [
1777
+ "services",
1778
+ "data",
1779
+ "v{{version}}",
1780
+ "jobs",
1781
+ "ingest",
1782
+ "{{_jobId}}",
1783
+ "failedResults"
1784
+ ]
1785
+ }
1786
+ },
1787
+ "status": "OK",
1788
+ "code": 200,
1789
+ "_postman_previewlanguage": "plain",
1790
+ "header": [
1791
+ {
1792
+ "key": "Date",
1793
+ "value": "Mon, 20 Nov 2023 15:04:29 GMT"
1794
+ },
1795
+ {
1796
+ "key": "Strict-Transport-Security",
1797
+ "value": "max-age=63072000; includeSubDomains"
1798
+ },
1799
+ {
1800
+ "key": "X-Content-Type-Options",
1801
+ "value": "nosniff"
1802
+ },
1803
+ {
1804
+ "key": "X-XSS-Protection",
1805
+ "value": "1; mode=block"
1806
+ },
1807
+ {
1808
+ "key": "X-Robots-Tag",
1809
+ "value": "none"
1810
+ },
1811
+ {
1812
+ "key": "Cache-Control",
1813
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1814
+ },
1815
+ {
1816
+ "key": "Sforce-Limit-Info",
1817
+ "value": "api-usage=12/15000"
1818
+ },
1819
+ {
1820
+ "key": "Content-Type",
1821
+ "value": "text/csv"
1822
+ },
1823
+ {
1824
+ "key": "Vary",
1825
+ "value": "Accept-Encoding"
1826
+ },
1827
+ {
1828
+ "key": "Content-Encoding",
1829
+ "value": "gzip"
1830
+ },
1831
+ {
1832
+ "key": "Transfer-Encoding",
1833
+ "value": "chunked"
1834
+ }
1835
+ ],
1836
+ "cookie": [],
1837
+ "body": "\"sf__Id\",\"sf__Error\",Name\n"
1838
+ }
1839
+ ]
1840
+ },
1841
+ {
1842
+ "name": "Get Job Unprocessed Record Results",
1843
+ "request": {
1844
+ "method": "GET",
1845
+ "header": [
1846
+ {
1847
+ "key": "Content-Type",
1848
+ "value": "application/json",
1849
+ "disabled": true
1850
+ }
1851
+ ],
1852
+ "url": {
1853
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest/{{_jobId}}/unprocessedrecords",
1854
+ "host": [
1855
+ "{{_endpoint}}"
1856
+ ],
1857
+ "path": [
1858
+ "services",
1859
+ "data",
1860
+ "v{{version}}",
1861
+ "jobs",
1862
+ "ingest",
1863
+ "{{_jobId}}",
1864
+ "unprocessedrecords"
1865
+ ]
1866
+ }
1867
+ },
1868
+ "response": [
1869
+ {
1870
+ "name": "Successful Get Job Unprocessed Record Results",
1871
+ "originalRequest": {
1872
+ "method": "GET",
1873
+ "header": [
1874
+ {
1875
+ "key": "Content-Type",
1876
+ "value": "application/json",
1877
+ "disabled": true
1878
+ }
1879
+ ],
1880
+ "url": {
1881
+ "raw": "{{_endpoint}}/services/data/v{{version}}/jobs/ingest/{{_jobId}}/unprocessedrecords",
1882
+ "host": [
1883
+ "{{_endpoint}}"
1884
+ ],
1885
+ "path": [
1886
+ "services",
1887
+ "data",
1888
+ "v{{version}}",
1889
+ "jobs",
1890
+ "ingest",
1891
+ "{{_jobId}}",
1892
+ "unprocessedrecords"
1893
+ ]
1894
+ }
1895
+ },
1896
+ "status": "OK",
1897
+ "code": 200,
1898
+ "_postman_previewlanguage": "plain",
1899
+ "header": [
1900
+ {
1901
+ "key": "Date",
1902
+ "value": "Mon, 20 Nov 2023 15:04:51 GMT"
1903
+ },
1904
+ {
1905
+ "key": "Strict-Transport-Security",
1906
+ "value": "max-age=63072000; includeSubDomains"
1907
+ },
1908
+ {
1909
+ "key": "X-Content-Type-Options",
1910
+ "value": "nosniff"
1911
+ },
1912
+ {
1913
+ "key": "X-XSS-Protection",
1914
+ "value": "1; mode=block"
1915
+ },
1916
+ {
1917
+ "key": "X-Robots-Tag",
1918
+ "value": "none"
1919
+ },
1920
+ {
1921
+ "key": "Cache-Control",
1922
+ "value": "no-cache,must-revalidate,max-age=0,no-store,private"
1923
+ },
1924
+ {
1925
+ "key": "Sforce-Limit-Info",
1926
+ "value": "api-usage=15/15000"
1927
+ },
1928
+ {
1929
+ "key": "Content-Type",
1930
+ "value": "text/csv"
1931
+ },
1932
+ {
1933
+ "key": "Vary",
1934
+ "value": "Accept-Encoding"
1935
+ },
1936
+ {
1937
+ "key": "Content-Encoding",
1938
+ "value": "gzip"
1939
+ },
1940
+ {
1941
+ "key": "Transfer-Encoding",
1942
+ "value": "chunked"
1943
+ }
1944
+ ],
1945
+ "cookie": [],
1946
+ "body": "Name\n"
1947
+ }
1948
+ ]
1949
+ }
1950
+ ]
1951
+ }