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.
- package/README.md +70 -0
- package/bin/adoptai-mcp.js +2 -0
- package/dist/apps/canva.js +1 -0
- package/dist/apps/figma.js +1 -0
- package/dist/apps/github.js +2 -0
- package/dist/apps/notion.js +1 -0
- package/dist/apps/registry.js +20 -0
- package/dist/apps/salesforce.js +1 -0
- package/dist/cli/add.js +532 -0
- package/dist/cli/index.js +39 -0
- package/dist/cli/list.js +19 -0
- package/dist/cli/remove.js +37 -0
- package/dist/cli/serve.js +27 -0
- package/dist/cli/status.js +24 -0
- package/dist/config/clients.js +118 -0
- package/dist/config/credentials.js +34 -0
- package/dist/core/auth-manager.js +237 -0
- package/dist/core/config-writer.js +161 -0
- package/dist/core/doctor.js +199 -0
- package/dist/core/package.json +3 -0
- package/dist/core/server-base.js +81 -0
- package/dist/integrations/canva/.env +3 -0
- package/dist/integrations/canva/auth.js +287 -0
- package/dist/integrations/canva/env.js +9 -0
- package/dist/integrations/canva/index.js +12 -0
- package/dist/integrations/canva/package.json +31 -0
- package/dist/integrations/canva/publish-to-adoptai.js +365 -0
- package/dist/integrations/canva/setup.js +90 -0
- package/dist/integrations/canva/tools.js +1315 -0
- package/dist/integrations/canva/tools.original.js +1315 -0
- package/dist/integrations/figma/auth.js +48 -0
- package/dist/integrations/figma/index.js +11 -0
- package/dist/integrations/figma/package.json +27 -0
- package/dist/integrations/figma/publish-to-adoptai.js +384 -0
- package/dist/integrations/figma/setup.js +90 -0
- package/dist/integrations/figma/tools.js +1137 -0
- package/dist/integrations/github/auth.js +53 -0
- package/dist/integrations/github/index.js +11 -0
- package/dist/integrations/github/package.json +28 -0
- package/dist/integrations/github/publish-to-adoptai.js +240 -0
- package/dist/integrations/github/setup.js +103 -0
- package/dist/integrations/github/tools.js +78 -0
- package/dist/integrations/github-actions/auth.js +53 -0
- package/dist/integrations/github-actions/index.js +11 -0
- package/dist/integrations/github-actions/package.json +27 -0
- package/dist/integrations/github-actions/setup.js +103 -0
- package/dist/integrations/github-actions/tools.js +5642 -0
- package/dist/integrations/github-activity/auth.js +53 -0
- package/dist/integrations/github-activity/index.js +11 -0
- package/dist/integrations/github-activity/package.json +27 -0
- package/dist/integrations/github-activity/setup.js +103 -0
- package/dist/integrations/github-activity/tools.js +925 -0
- package/dist/integrations/github-apps/auth.js +53 -0
- package/dist/integrations/github-apps/index.js +11 -0
- package/dist/integrations/github-apps/package.json +27 -0
- package/dist/integrations/github-apps/setup.js +103 -0
- package/dist/integrations/github-apps/tools.js +791 -0
- package/dist/integrations/github-billing/auth.js +53 -0
- package/dist/integrations/github-billing/index.js +11 -0
- package/dist/integrations/github-billing/package.json +27 -0
- package/dist/integrations/github-billing/setup.js +103 -0
- package/dist/integrations/github-billing/tools.js +438 -0
- package/dist/integrations/github-checks/auth.js +53 -0
- package/dist/integrations/github-checks/index.js +11 -0
- package/dist/integrations/github-checks/package.json +27 -0
- package/dist/integrations/github-checks/setup.js +103 -0
- package/dist/integrations/github-checks/tools.js +607 -0
- package/dist/integrations/github-code-scanning/auth.js +53 -0
- package/dist/integrations/github-code-scanning/index.js +11 -0
- package/dist/integrations/github-code-scanning/package.json +27 -0
- package/dist/integrations/github-code-scanning/setup.js +103 -0
- package/dist/integrations/github-code-scanning/tools.js +987 -0
- package/dist/integrations/github-dependabot/auth.js +53 -0
- package/dist/integrations/github-dependabot/index.js +11 -0
- package/dist/integrations/github-dependabot/package.json +27 -0
- package/dist/integrations/github-dependabot/setup.js +103 -0
- package/dist/integrations/github-dependabot/tools.js +915 -0
- package/dist/integrations/github-gists/auth.js +53 -0
- package/dist/integrations/github-gists/index.js +11 -0
- package/dist/integrations/github-gists/package.json +27 -0
- package/dist/integrations/github-gists/setup.js +103 -0
- package/dist/integrations/github-gists/tools.js +545 -0
- package/dist/integrations/github-git/auth.js +53 -0
- package/dist/integrations/github-git/index.js +11 -0
- package/dist/integrations/github-git/package.json +27 -0
- package/dist/integrations/github-git/setup.js +103 -0
- package/dist/integrations/github-git/tools.js +513 -0
- package/dist/integrations/github-issues/auth.js +53 -0
- package/dist/integrations/github-issues/index.js +11 -0
- package/dist/integrations/github-issues/package.json +27 -0
- package/dist/integrations/github-issues/setup.js +103 -0
- package/dist/integrations/github-issues/tools.js +2232 -0
- package/dist/integrations/github-orgs/auth.js +53 -0
- package/dist/integrations/github-orgs/index.js +11 -0
- package/dist/integrations/github-orgs/package.json +27 -0
- package/dist/integrations/github-orgs/setup.js +103 -0
- package/dist/integrations/github-orgs/tools.js +3512 -0
- package/dist/integrations/github-packages/auth.js +53 -0
- package/dist/integrations/github-packages/index.js +11 -0
- package/dist/integrations/github-packages/package.json +27 -0
- package/dist/integrations/github-packages/setup.js +103 -0
- package/dist/integrations/github-packages/tools.js +1088 -0
- package/dist/integrations/github-pulls/auth.js +53 -0
- package/dist/integrations/github-pulls/index.js +11 -0
- package/dist/integrations/github-pulls/package.json +27 -0
- package/dist/integrations/github-pulls/setup.js +103 -0
- package/dist/integrations/github-pulls/tools.js +1252 -0
- package/dist/integrations/github-reactions/auth.js +53 -0
- package/dist/integrations/github-reactions/index.js +11 -0
- package/dist/integrations/github-reactions/package.json +27 -0
- package/dist/integrations/github-reactions/setup.js +103 -0
- package/dist/integrations/github-reactions/tools.js +706 -0
- package/dist/integrations/github-repos/auth.js +53 -0
- package/dist/integrations/github-repos/index.js +11 -0
- package/dist/integrations/github-repos/package.json +27 -0
- package/dist/integrations/github-repos/setup.js +103 -0
- package/dist/integrations/github-repos/tools.js +7286 -0
- package/dist/integrations/github-search/auth.js +53 -0
- package/dist/integrations/github-search/index.js +11 -0
- package/dist/integrations/github-search/package.json +27 -0
- package/dist/integrations/github-search/setup.js +103 -0
- package/dist/integrations/github-search/tools.js +370 -0
- package/dist/integrations/github-teams/auth.js +53 -0
- package/dist/integrations/github-teams/index.js +11 -0
- package/dist/integrations/github-teams/package.json +27 -0
- package/dist/integrations/github-teams/setup.js +103 -0
- package/dist/integrations/github-teams/tools.js +633 -0
- package/dist/integrations/github-users/auth.js +53 -0
- package/dist/integrations/github-users/index.js +11 -0
- package/dist/integrations/github-users/package.json +27 -0
- package/dist/integrations/github-users/setup.js +103 -0
- package/dist/integrations/github-users/tools.js +1118 -0
- package/dist/integrations/notion/api.js +108 -0
- package/dist/integrations/notion/auth.js +59 -0
- package/dist/integrations/notion/endpoints.json +630 -0
- package/dist/integrations/notion/index.js +11 -0
- package/dist/integrations/notion/package.json +33 -0
- package/dist/integrations/notion/publish-to-adoptai.js +271 -0
- package/dist/integrations/notion/scripts/generate-endpoints.mjs +306 -0
- package/dist/integrations/notion/setup.js +89 -0
- package/dist/integrations/notion/tools.js +586 -0
- package/dist/integrations/notion/tools.original.js +568 -0
- package/dist/integrations/salesforce/.env +8 -0
- package/dist/integrations/salesforce/.env.example +15 -0
- package/dist/integrations/salesforce/auth.js +311 -0
- package/dist/integrations/salesforce/endpoints.json +1359 -0
- package/dist/integrations/salesforce/env.js +9 -0
- package/dist/integrations/salesforce/index.js +12 -0
- package/dist/integrations/salesforce/package.json +42 -0
- package/dist/integrations/salesforce/publish-smart-specs.js +890 -0
- package/dist/integrations/salesforce/publish-to-adoptai.js +386 -0
- package/dist/integrations/salesforce/scripts/extract-postman.mjs +222 -0
- package/dist/integrations/salesforce/setup.js +112 -0
- package/dist/integrations/salesforce/tools.js +4544 -0
- package/dist/integrations/salesforce/tools.original.js +4487 -0
- package/dist/server/mcp-server.js +50 -0
- package/dist/server/tool-loader.js +47 -0
- package/dist/specs/figma-api.json +13621 -0
- package/dist/specs/split/salesforce-auth.json +3931 -0
- package/dist/specs/split/salesforce-bulk-v1.json +1489 -0
- package/dist/specs/split/salesforce-bulk-v2.json +1951 -0
- package/dist/specs/split/salesforce-composite.json +1246 -0
- package/dist/specs/split/salesforce-connect.json +11639 -0
- package/dist/specs/split/salesforce-einstein-prediction-service.json +576 -0
- package/dist/specs/split/salesforce-event-platform.json +2682 -0
- package/dist/specs/split/salesforce-graphql.json +1754 -0
- package/dist/specs/split/salesforce-industries.json +4115 -0
- package/dist/specs/split/salesforce-metadata.json +555 -0
- package/dist/specs/split/salesforce-rest.json +4798 -0
- package/dist/specs/split/salesforce-soap.json +210 -0
- package/dist/specs/split/salesforce-subscription-management.json +1299 -0
- package/dist/specs/split/salesforce-tooling.json +2026 -0
- package/dist/specs/split/salesforce-ui.json +7426 -0
- package/package.json +47 -0
|
@@ -0,0 +1,2026 @@
|
|
|
1
|
+
{
|
|
2
|
+
"info": {
|
|
3
|
+
"_postman_id": "67cb9baa-e0da-4986-957e-88d8734647e2",
|
|
4
|
+
"name": "Salesforce Platform APIs - tooling",
|
|
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 & 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": "List Sandboxes",
|
|
165
|
+
"protocolProfileBehavior": {
|
|
166
|
+
"disableBodyPruning": true
|
|
167
|
+
},
|
|
168
|
+
"request": {
|
|
169
|
+
"method": "GET",
|
|
170
|
+
"header": [
|
|
171
|
+
{
|
|
172
|
+
"key": "Content-Type",
|
|
173
|
+
"type": "text",
|
|
174
|
+
"value": "application/json",
|
|
175
|
+
"disabled": true
|
|
176
|
+
}
|
|
177
|
+
],
|
|
178
|
+
"body": {
|
|
179
|
+
"mode": "raw",
|
|
180
|
+
"raw": ""
|
|
181
|
+
},
|
|
182
|
+
"url": {
|
|
183
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/query/?q=SELECT Id, SandboxName, LicenseType, AutoActivate FROM SandboxInfo",
|
|
184
|
+
"host": [
|
|
185
|
+
"{{_endpoint}}"
|
|
186
|
+
],
|
|
187
|
+
"path": [
|
|
188
|
+
"services",
|
|
189
|
+
"data",
|
|
190
|
+
"v{{version}}",
|
|
191
|
+
"tooling",
|
|
192
|
+
"query",
|
|
193
|
+
""
|
|
194
|
+
],
|
|
195
|
+
"query": [
|
|
196
|
+
{
|
|
197
|
+
"key": "q",
|
|
198
|
+
"value": "SELECT Id, SandboxName, LicenseType, AutoActivate FROM SandboxInfo",
|
|
199
|
+
"description": "SOQL Query"
|
|
200
|
+
}
|
|
201
|
+
]
|
|
202
|
+
},
|
|
203
|
+
"description": "Lists all sandboxes."
|
|
204
|
+
},
|
|
205
|
+
"response": [
|
|
206
|
+
{
|
|
207
|
+
"name": "List Sandboxes",
|
|
208
|
+
"originalRequest": {
|
|
209
|
+
"method": "GET",
|
|
210
|
+
"header": [
|
|
211
|
+
{
|
|
212
|
+
"key": "Content-Type",
|
|
213
|
+
"value": "application/json",
|
|
214
|
+
"disabled": true
|
|
215
|
+
}
|
|
216
|
+
],
|
|
217
|
+
"body": {
|
|
218
|
+
"mode": "raw",
|
|
219
|
+
"raw": ""
|
|
220
|
+
},
|
|
221
|
+
"url": {
|
|
222
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/query/?q=SELECT Id, SandboxName, LicenseType, AutoActivate FROM SandboxInfo",
|
|
223
|
+
"host": [
|
|
224
|
+
"{{_endpoint}}"
|
|
225
|
+
],
|
|
226
|
+
"path": [
|
|
227
|
+
"services",
|
|
228
|
+
"data",
|
|
229
|
+
"v{{version}}",
|
|
230
|
+
"tooling",
|
|
231
|
+
"query",
|
|
232
|
+
""
|
|
233
|
+
],
|
|
234
|
+
"query": [
|
|
235
|
+
{
|
|
236
|
+
"key": "q",
|
|
237
|
+
"value": "SELECT Id, SandboxName, LicenseType, AutoActivate FROM SandboxInfo",
|
|
238
|
+
"description": "SOQL Query"
|
|
239
|
+
}
|
|
240
|
+
]
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"status": "OK",
|
|
244
|
+
"code": 200,
|
|
245
|
+
"_postman_previewlanguage": "json",
|
|
246
|
+
"header": [
|
|
247
|
+
{
|
|
248
|
+
"key": "Date",
|
|
249
|
+
"value": "Mon, 11 Dec 2023 10:45:22 GMT"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"key": "Strict-Transport-Security",
|
|
253
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"key": "X-Content-Type-Options",
|
|
257
|
+
"value": "nosniff"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"key": "X-Robots-Tag",
|
|
261
|
+
"value": "none"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"key": "Cache-Control",
|
|
265
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"key": "Sforce-Limit-Info",
|
|
269
|
+
"value": "api-usage=312/15000"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"key": "Content-Type",
|
|
273
|
+
"value": "application/json;charset=UTF-8"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"key": "Vary",
|
|
277
|
+
"value": "Accept-Encoding"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"key": "Content-Encoding",
|
|
281
|
+
"value": "gzip"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"key": "Transfer-Encoding",
|
|
285
|
+
"value": "chunked"
|
|
286
|
+
}
|
|
287
|
+
],
|
|
288
|
+
"cookie": [],
|
|
289
|
+
"body": "{\n \"size\": 1,\n \"totalSize\": 1,\n \"done\": true,\n \"queryLocator\": null,\n \"entityTypeName\": \"SandboxInfo\",\n \"records\": [\n {\n \"attributes\": {\n \"type\": \"SandboxInfo\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/SandboxInfo/0GQ4H000000CxSzWAK\"\n },\n \"Id\": \"0GQ4H000000CxSzWAK\",\n \"SandboxName\": \"devSandbox\",\n \"LicenseType\": \"DEVELOPER\",\n \"AutoActivate\": false\n }\n ]\n}"
|
|
290
|
+
}
|
|
291
|
+
]
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"name": "Create/Clone Sandbox",
|
|
295
|
+
"request": {
|
|
296
|
+
"method": "POST",
|
|
297
|
+
"header": [
|
|
298
|
+
{
|
|
299
|
+
"key": "Content-Type",
|
|
300
|
+
"value": "application/json",
|
|
301
|
+
"type": "text"
|
|
302
|
+
}
|
|
303
|
+
],
|
|
304
|
+
"body": {
|
|
305
|
+
"mode": "raw",
|
|
306
|
+
"raw": "{\n \"SandboxName\": \"devSandbox\",\n \"LicenseType\": \"DEVELOPER\",\n \"TemplateId\": null,\n \"HistoryDays\": 0,\n \"CopyChatter\": false,\n \"AutoActivate\": false,\n \"ApexClassId\": null,\n \"Description\": \"My new fresh sandbox\",\n \"SourceId\": null\n}",
|
|
307
|
+
"options": {
|
|
308
|
+
"raw": {
|
|
309
|
+
"language": "json"
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
"url": {
|
|
314
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/SandboxInfo",
|
|
315
|
+
"host": [
|
|
316
|
+
"{{_endpoint}}"
|
|
317
|
+
],
|
|
318
|
+
"path": [
|
|
319
|
+
"services",
|
|
320
|
+
"data",
|
|
321
|
+
"v{{version}}",
|
|
322
|
+
"tooling",
|
|
323
|
+
"sobjects",
|
|
324
|
+
"SandboxInfo"
|
|
325
|
+
]
|
|
326
|
+
},
|
|
327
|
+
"description": "Creates or clones a sandbox. If you wish to clone, fill the SourceId body field with the org Id of the source sandbox."
|
|
328
|
+
},
|
|
329
|
+
"response": [
|
|
330
|
+
{
|
|
331
|
+
"name": "Create Sandbox",
|
|
332
|
+
"originalRequest": {
|
|
333
|
+
"method": "POST",
|
|
334
|
+
"header": [
|
|
335
|
+
{
|
|
336
|
+
"key": "Content-Type",
|
|
337
|
+
"value": "application/json"
|
|
338
|
+
}
|
|
339
|
+
],
|
|
340
|
+
"body": {
|
|
341
|
+
"mode": "raw",
|
|
342
|
+
"raw": "{\n \"SandboxName\": \"devSandbox\",\n \"LicenseType\": \"DEVELOPER\",\n \"TemplateId\": null,\n \"HistoryDays\": 0,\n \"CopyChatter\": false,\n \"AutoActivate\": false,\n \"ApexClassId\": null,\n \"Description\": \"My new fresh sandbox\",\n \"SourceId\": null\n}",
|
|
343
|
+
"options": {
|
|
344
|
+
"raw": {
|
|
345
|
+
"language": "json"
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
"url": {
|
|
350
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/SandboxInfo",
|
|
351
|
+
"host": [
|
|
352
|
+
"{{_endpoint}}"
|
|
353
|
+
],
|
|
354
|
+
"path": [
|
|
355
|
+
"services",
|
|
356
|
+
"data",
|
|
357
|
+
"v{{version}}",
|
|
358
|
+
"tooling",
|
|
359
|
+
"sobjects",
|
|
360
|
+
"SandboxInfo"
|
|
361
|
+
]
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"status": "Created",
|
|
365
|
+
"code": 201,
|
|
366
|
+
"_postman_previewlanguage": "json",
|
|
367
|
+
"header": [
|
|
368
|
+
{
|
|
369
|
+
"key": "Date",
|
|
370
|
+
"value": "Mon, 11 Dec 2023 10:44:57 GMT"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"key": "Strict-Transport-Security",
|
|
374
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"key": "X-Content-Type-Options",
|
|
378
|
+
"value": "nosniff"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"key": "X-Robots-Tag",
|
|
382
|
+
"value": "none"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"key": "Cache-Control",
|
|
386
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"key": "Sforce-Limit-Info",
|
|
390
|
+
"value": "api-usage=312/15000"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"key": "Location",
|
|
394
|
+
"value": "/services/data/v59.0/tooling/sobjects/SandboxInfo/0GQ4H000000CxSzWAK"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"key": "Content-Type",
|
|
398
|
+
"value": "application/json;charset=UTF-8"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"key": "Vary",
|
|
402
|
+
"value": "Accept-Encoding"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"key": "Content-Encoding",
|
|
406
|
+
"value": "gzip"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"key": "Transfer-Encoding",
|
|
410
|
+
"value": "chunked"
|
|
411
|
+
}
|
|
412
|
+
],
|
|
413
|
+
"cookie": [],
|
|
414
|
+
"body": "{\n \"id\": \"0GQ4H000000CxSzWAK\",\n \"success\": true,\n \"errors\": [],\n \"warnings\": [],\n \"infos\": []\n}"
|
|
415
|
+
}
|
|
416
|
+
]
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"name": "Get Sandbox",
|
|
420
|
+
"request": {
|
|
421
|
+
"method": "GET",
|
|
422
|
+
"header": [],
|
|
423
|
+
"url": {
|
|
424
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/SandboxInfo/:SANDBOX_INFO_ID",
|
|
425
|
+
"host": [
|
|
426
|
+
"{{_endpoint}}"
|
|
427
|
+
],
|
|
428
|
+
"path": [
|
|
429
|
+
"services",
|
|
430
|
+
"data",
|
|
431
|
+
"v{{version}}",
|
|
432
|
+
"tooling",
|
|
433
|
+
"sobjects",
|
|
434
|
+
"SandboxInfo",
|
|
435
|
+
":SANDBOX_INFO_ID"
|
|
436
|
+
],
|
|
437
|
+
"variable": [
|
|
438
|
+
{
|
|
439
|
+
"key": "SANDBOX_INFO_ID",
|
|
440
|
+
"value": ""
|
|
441
|
+
}
|
|
442
|
+
]
|
|
443
|
+
},
|
|
444
|
+
"description": "Retrieves a sandbox record."
|
|
445
|
+
},
|
|
446
|
+
"response": [
|
|
447
|
+
{
|
|
448
|
+
"name": "Get Sandbox",
|
|
449
|
+
"originalRequest": {
|
|
450
|
+
"method": "GET",
|
|
451
|
+
"header": [],
|
|
452
|
+
"url": {
|
|
453
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/SandboxInfo/:SANDBOX_INFO_ID",
|
|
454
|
+
"host": [
|
|
455
|
+
"{{_endpoint}}"
|
|
456
|
+
],
|
|
457
|
+
"path": [
|
|
458
|
+
"services",
|
|
459
|
+
"data",
|
|
460
|
+
"v{{version}}",
|
|
461
|
+
"tooling",
|
|
462
|
+
"sobjects",
|
|
463
|
+
"SandboxInfo",
|
|
464
|
+
":SANDBOX_INFO_ID"
|
|
465
|
+
],
|
|
466
|
+
"variable": [
|
|
467
|
+
{
|
|
468
|
+
"key": "SANDBOX_INFO_ID",
|
|
469
|
+
"value": "0GQ4H000000CxSzWAK"
|
|
470
|
+
}
|
|
471
|
+
]
|
|
472
|
+
}
|
|
473
|
+
},
|
|
474
|
+
"status": "OK",
|
|
475
|
+
"code": 200,
|
|
476
|
+
"_postman_previewlanguage": "json",
|
|
477
|
+
"header": [
|
|
478
|
+
{
|
|
479
|
+
"key": "Date",
|
|
480
|
+
"value": "Mon, 11 Dec 2023 10:45:48 GMT"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"key": "Strict-Transport-Security",
|
|
484
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"key": "X-Content-Type-Options",
|
|
488
|
+
"value": "nosniff"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"key": "X-Robots-Tag",
|
|
492
|
+
"value": "none"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"key": "Cache-Control",
|
|
496
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"key": "Sforce-Limit-Info",
|
|
500
|
+
"value": "api-usage=316/15000"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"key": "Last-Modified",
|
|
504
|
+
"value": "Mon, 11 Dec 2023 10:44:58 GMT"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"key": "Content-Type",
|
|
508
|
+
"value": "application/json;charset=UTF-8"
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"key": "Vary",
|
|
512
|
+
"value": "Accept-Encoding"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"key": "Content-Encoding",
|
|
516
|
+
"value": "gzip"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"key": "Transfer-Encoding",
|
|
520
|
+
"value": "chunked"
|
|
521
|
+
}
|
|
522
|
+
],
|
|
523
|
+
"cookie": [],
|
|
524
|
+
"body": "{\n \"attributes\": {\n \"type\": \"SandboxInfo\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/SandboxInfo/0GQ4H000000CxSzWAK\"\n },\n \"Id\": \"0GQ4H000000CxSzWAK\",\n \"IsDeleted\": false,\n \"CreatedDate\": \"2023-12-11T10:44:58.000+0000\",\n \"CreatedById\": \"00558000000yFyDAAU\",\n \"LastModifiedDate\": \"2023-12-11T10:44:58.000+0000\",\n \"LastModifiedById\": \"00558000000yFyDAAU\",\n \"SystemModstamp\": \"2023-12-11T10:44:58.000+0000\",\n \"SandboxName\": \"devSandbox\",\n \"LicenseType\": \"DEVELOPER\",\n \"TemplateId\": null,\n \"HistoryDays\": 0,\n \"CopyChatter\": false,\n \"AutoActivate\": false,\n \"ApexClassId\": null,\n \"Description\": \"My new fresh sandbox\",\n \"SourceId\": null\n}"
|
|
525
|
+
}
|
|
526
|
+
]
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"name": "Get Sandbox Status",
|
|
530
|
+
"protocolProfileBehavior": {
|
|
531
|
+
"disableBodyPruning": true
|
|
532
|
+
},
|
|
533
|
+
"request": {
|
|
534
|
+
"method": "GET",
|
|
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}}/tooling/query/?q=SELECT SandboxName, Status, StartDate FROM SandboxProcess WHERE SandboxInfoId='<SANDBOX_INFO_ID>' ORDER BY StartDate DESC LIMIT 200",
|
|
548
|
+
"host": [
|
|
549
|
+
"{{_endpoint}}"
|
|
550
|
+
],
|
|
551
|
+
"path": [
|
|
552
|
+
"services",
|
|
553
|
+
"data",
|
|
554
|
+
"v{{version}}",
|
|
555
|
+
"tooling",
|
|
556
|
+
"query",
|
|
557
|
+
""
|
|
558
|
+
],
|
|
559
|
+
"query": [
|
|
560
|
+
{
|
|
561
|
+
"key": "q",
|
|
562
|
+
"value": "SELECT SandboxName, Status, StartDate FROM SandboxProcess WHERE SandboxInfoId='<SANDBOX_INFO_ID>' ORDER BY StartDate DESC LIMIT 200",
|
|
563
|
+
"description": "SOQL Query"
|
|
564
|
+
}
|
|
565
|
+
]
|
|
566
|
+
},
|
|
567
|
+
"description": "Lists all sandboxes."
|
|
568
|
+
},
|
|
569
|
+
"response": [
|
|
570
|
+
{
|
|
571
|
+
"name": "Get Sandbox Status",
|
|
572
|
+
"originalRequest": {
|
|
573
|
+
"method": "GET",
|
|
574
|
+
"header": [
|
|
575
|
+
{
|
|
576
|
+
"key": "Content-Type",
|
|
577
|
+
"value": "application/json",
|
|
578
|
+
"disabled": true
|
|
579
|
+
}
|
|
580
|
+
],
|
|
581
|
+
"body": {
|
|
582
|
+
"mode": "raw",
|
|
583
|
+
"raw": ""
|
|
584
|
+
},
|
|
585
|
+
"url": {
|
|
586
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/query/?q=SELECT SandboxName, Status, StartDate FROM SandboxProcess WHERE SandboxInfoId='0GQ4H000000CxSzWAK' ORDER BY StartDate DESC LIMIT 200",
|
|
587
|
+
"host": [
|
|
588
|
+
"{{_endpoint}}"
|
|
589
|
+
],
|
|
590
|
+
"path": [
|
|
591
|
+
"services",
|
|
592
|
+
"data",
|
|
593
|
+
"v{{version}}",
|
|
594
|
+
"tooling",
|
|
595
|
+
"query",
|
|
596
|
+
""
|
|
597
|
+
],
|
|
598
|
+
"query": [
|
|
599
|
+
{
|
|
600
|
+
"key": "q",
|
|
601
|
+
"value": "SELECT SandboxName, Status, StartDate FROM SandboxProcess WHERE SandboxInfoId='0GQ4H000000CxSzWAK' ORDER BY StartDate DESC LIMIT 200",
|
|
602
|
+
"description": "SOQL Query"
|
|
603
|
+
}
|
|
604
|
+
]
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
"status": "OK",
|
|
608
|
+
"code": 200,
|
|
609
|
+
"_postman_previewlanguage": "json",
|
|
610
|
+
"header": [
|
|
611
|
+
{
|
|
612
|
+
"key": "Date",
|
|
613
|
+
"value": "Wed, 13 Dec 2023 12:34:55 GMT"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"key": "Strict-Transport-Security",
|
|
617
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"key": "X-Content-Type-Options",
|
|
621
|
+
"value": "nosniff"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"key": "X-Robots-Tag",
|
|
625
|
+
"value": "none"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"key": "Cache-Control",
|
|
629
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"key": "Sforce-Limit-Info",
|
|
633
|
+
"value": "api-usage=6/15000"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"key": "Content-Type",
|
|
637
|
+
"value": "application/json;charset=UTF-8"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"key": "Vary",
|
|
641
|
+
"value": "Accept-Encoding"
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"key": "Content-Encoding",
|
|
645
|
+
"value": "gzip"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"key": "Transfer-Encoding",
|
|
649
|
+
"value": "chunked"
|
|
650
|
+
}
|
|
651
|
+
],
|
|
652
|
+
"cookie": [],
|
|
653
|
+
"body": "{\n \"size\": 2,\n \"totalSize\": 2,\n \"done\": true,\n \"queryLocator\": null,\n \"entityTypeName\": \"SandboxProcess\",\n \"records\": [\n {\n \"attributes\": {\n \"type\": \"SandboxProcess\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/SandboxProcess/0GR4H000000D2pCWAS\"\n },\n \"SandboxName\": \"devSandbox\",\n \"Status\": \"Processing\",\n \"StartDate\": \"2023-12-13T12:33:56.000+0000\"\n },\n {\n \"attributes\": {\n \"type\": \"SandboxProcess\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/SandboxProcess/0GR4H000000D2p7WAC\"\n },\n \"SandboxName\": \"devSandbox\",\n \"Status\": \"Completed\",\n \"StartDate\": \"2023-12-11T10:44:58.000+0000\"\n }\n ]\n}"
|
|
654
|
+
}
|
|
655
|
+
]
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"name": "Refresh Sandbox",
|
|
659
|
+
"request": {
|
|
660
|
+
"method": "PATCH",
|
|
661
|
+
"header": [
|
|
662
|
+
{
|
|
663
|
+
"key": "Content-Type",
|
|
664
|
+
"value": "application/json",
|
|
665
|
+
"type": "text"
|
|
666
|
+
}
|
|
667
|
+
],
|
|
668
|
+
"body": {
|
|
669
|
+
"mode": "raw",
|
|
670
|
+
"raw": "{\n \"LicenseType\": \"DEVELOPER\",\n \"AutoActivate\": true\n}",
|
|
671
|
+
"options": {
|
|
672
|
+
"raw": {
|
|
673
|
+
"language": "json"
|
|
674
|
+
}
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
"url": {
|
|
678
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/SandboxInfo/:SANDBOX_INFO_ID",
|
|
679
|
+
"host": [
|
|
680
|
+
"{{_endpoint}}"
|
|
681
|
+
],
|
|
682
|
+
"path": [
|
|
683
|
+
"services",
|
|
684
|
+
"data",
|
|
685
|
+
"v{{version}}",
|
|
686
|
+
"tooling",
|
|
687
|
+
"sobjects",
|
|
688
|
+
"SandboxInfo",
|
|
689
|
+
":SANDBOX_INFO_ID"
|
|
690
|
+
],
|
|
691
|
+
"variable": [
|
|
692
|
+
{
|
|
693
|
+
"key": "SANDBOX_INFO_ID",
|
|
694
|
+
"value": ""
|
|
695
|
+
}
|
|
696
|
+
]
|
|
697
|
+
},
|
|
698
|
+
"description": "Refreshes a sandbox."
|
|
699
|
+
},
|
|
700
|
+
"response": [
|
|
701
|
+
{
|
|
702
|
+
"name": "Refresh Sandbox",
|
|
703
|
+
"originalRequest": {
|
|
704
|
+
"method": "PATCH",
|
|
705
|
+
"header": [
|
|
706
|
+
{
|
|
707
|
+
"key": "Content-Type",
|
|
708
|
+
"value": "application/json"
|
|
709
|
+
}
|
|
710
|
+
],
|
|
711
|
+
"body": {
|
|
712
|
+
"mode": "raw",
|
|
713
|
+
"raw": "{\n \"LicenseType\": \"DEVELOPER\",\n \"AutoActivate\": true\n}",
|
|
714
|
+
"options": {
|
|
715
|
+
"raw": {
|
|
716
|
+
"language": "json"
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
},
|
|
720
|
+
"url": {
|
|
721
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/SandboxInfo/:SANDBOX_INFO_ID",
|
|
722
|
+
"host": [
|
|
723
|
+
"{{_endpoint}}"
|
|
724
|
+
],
|
|
725
|
+
"path": [
|
|
726
|
+
"services",
|
|
727
|
+
"data",
|
|
728
|
+
"v{{version}}",
|
|
729
|
+
"tooling",
|
|
730
|
+
"sobjects",
|
|
731
|
+
"SandboxInfo",
|
|
732
|
+
":SANDBOX_INFO_ID"
|
|
733
|
+
],
|
|
734
|
+
"variable": [
|
|
735
|
+
{
|
|
736
|
+
"key": "SANDBOX_INFO_ID",
|
|
737
|
+
"value": "0GQ4H000000CxSzWAK"
|
|
738
|
+
}
|
|
739
|
+
]
|
|
740
|
+
}
|
|
741
|
+
},
|
|
742
|
+
"status": "No Content",
|
|
743
|
+
"code": 204,
|
|
744
|
+
"_postman_previewlanguage": "plain",
|
|
745
|
+
"header": [
|
|
746
|
+
{
|
|
747
|
+
"key": "Date",
|
|
748
|
+
"value": "Wed, 13 Dec 2023 12:33:55 GMT"
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
"key": "Strict-Transport-Security",
|
|
752
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"key": "X-Content-Type-Options",
|
|
756
|
+
"value": "nosniff"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"key": "Content-Security-Policy",
|
|
760
|
+
"value": "upgrade-insecure-requests"
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"key": "X-Robots-Tag",
|
|
764
|
+
"value": "none"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"key": "Cache-Control",
|
|
768
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"key": "Sforce-Limit-Info",
|
|
772
|
+
"value": "api-usage=2/15000"
|
|
773
|
+
}
|
|
774
|
+
],
|
|
775
|
+
"cookie": [],
|
|
776
|
+
"body": null
|
|
777
|
+
}
|
|
778
|
+
]
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"name": "Delete Sandbox",
|
|
782
|
+
"request": {
|
|
783
|
+
"method": "DELETE",
|
|
784
|
+
"header": [],
|
|
785
|
+
"url": {
|
|
786
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/SandboxInfo/:SANDBOX_INFO_ID",
|
|
787
|
+
"host": [
|
|
788
|
+
"{{_endpoint}}"
|
|
789
|
+
],
|
|
790
|
+
"path": [
|
|
791
|
+
"services",
|
|
792
|
+
"data",
|
|
793
|
+
"v{{version}}",
|
|
794
|
+
"tooling",
|
|
795
|
+
"sobjects",
|
|
796
|
+
"SandboxInfo",
|
|
797
|
+
":SANDBOX_INFO_ID"
|
|
798
|
+
],
|
|
799
|
+
"variable": [
|
|
800
|
+
{
|
|
801
|
+
"key": "SANDBOX_INFO_ID",
|
|
802
|
+
"value": ""
|
|
803
|
+
}
|
|
804
|
+
]
|
|
805
|
+
},
|
|
806
|
+
"description": "Deletes a sandbox."
|
|
807
|
+
},
|
|
808
|
+
"response": [
|
|
809
|
+
{
|
|
810
|
+
"name": "Delete Sandbox",
|
|
811
|
+
"originalRequest": {
|
|
812
|
+
"method": "DELETE",
|
|
813
|
+
"header": [],
|
|
814
|
+
"url": {
|
|
815
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/SandboxInfo/:SANDBOX_INFO_ID",
|
|
816
|
+
"host": [
|
|
817
|
+
"{{_endpoint}}"
|
|
818
|
+
],
|
|
819
|
+
"path": [
|
|
820
|
+
"services",
|
|
821
|
+
"data",
|
|
822
|
+
"v{{version}}",
|
|
823
|
+
"tooling",
|
|
824
|
+
"sobjects",
|
|
825
|
+
"SandboxInfo",
|
|
826
|
+
":SANDBOX_INFO_ID"
|
|
827
|
+
],
|
|
828
|
+
"variable": [
|
|
829
|
+
{
|
|
830
|
+
"key": "SANDBOX_INFO_ID",
|
|
831
|
+
"value": "0GQ4H000000CxSzWAK"
|
|
832
|
+
}
|
|
833
|
+
]
|
|
834
|
+
}
|
|
835
|
+
},
|
|
836
|
+
"status": "No Content",
|
|
837
|
+
"code": 204,
|
|
838
|
+
"_postman_previewlanguage": "plain",
|
|
839
|
+
"header": [
|
|
840
|
+
{
|
|
841
|
+
"key": "Date",
|
|
842
|
+
"value": "Fri, 15 Dec 2023 13:34:29 GMT"
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"key": "Strict-Transport-Security",
|
|
846
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"key": "X-Content-Type-Options",
|
|
850
|
+
"value": "nosniff"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"key": "Content-Security-Policy",
|
|
854
|
+
"value": "upgrade-insecure-requests"
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"key": "X-Robots-Tag",
|
|
858
|
+
"value": "none"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"key": "Cache-Control",
|
|
862
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"key": "Sforce-Limit-Info",
|
|
866
|
+
"value": "api-usage=2/15000"
|
|
867
|
+
}
|
|
868
|
+
],
|
|
869
|
+
"cookie": [],
|
|
870
|
+
"body": null
|
|
871
|
+
}
|
|
872
|
+
]
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"name": "Tooling Completion",
|
|
876
|
+
"request": {
|
|
877
|
+
"method": "GET",
|
|
878
|
+
"header": [
|
|
879
|
+
{
|
|
880
|
+
"key": "Accept",
|
|
881
|
+
"value": "application/json",
|
|
882
|
+
"type": "text"
|
|
883
|
+
}
|
|
884
|
+
],
|
|
885
|
+
"url": {
|
|
886
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/completions?type=",
|
|
887
|
+
"host": [
|
|
888
|
+
"{{_endpoint}}"
|
|
889
|
+
],
|
|
890
|
+
"path": [
|
|
891
|
+
"services",
|
|
892
|
+
"data",
|
|
893
|
+
"v{{version}}",
|
|
894
|
+
"tooling",
|
|
895
|
+
"completions"
|
|
896
|
+
],
|
|
897
|
+
"query": [
|
|
898
|
+
{
|
|
899
|
+
"key": "type",
|
|
900
|
+
"value": "",
|
|
901
|
+
"description": "apex or visualforce"
|
|
902
|
+
}
|
|
903
|
+
]
|
|
904
|
+
},
|
|
905
|
+
"description": "Retrieves available code completions of the referenced type for Apex system method symbols (type=apex). Available from API version 28.0 or later."
|
|
906
|
+
},
|
|
907
|
+
"response": []
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"name": "Tooling ExecuteAnonymous",
|
|
911
|
+
"protocolProfileBehavior": {
|
|
912
|
+
"disableBodyPruning": true
|
|
913
|
+
},
|
|
914
|
+
"request": {
|
|
915
|
+
"method": "GET",
|
|
916
|
+
"header": [
|
|
917
|
+
{
|
|
918
|
+
"key": "Content-Type",
|
|
919
|
+
"type": "text",
|
|
920
|
+
"value": "application/json",
|
|
921
|
+
"disabled": true
|
|
922
|
+
}
|
|
923
|
+
],
|
|
924
|
+
"body": {
|
|
925
|
+
"mode": "raw",
|
|
926
|
+
"raw": ""
|
|
927
|
+
},
|
|
928
|
+
"url": {
|
|
929
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/executeAnonymous/?anonymousBody=System.Debug('awesome');",
|
|
930
|
+
"host": [
|
|
931
|
+
"{{_endpoint}}"
|
|
932
|
+
],
|
|
933
|
+
"path": [
|
|
934
|
+
"services",
|
|
935
|
+
"data",
|
|
936
|
+
"v{{version}}",
|
|
937
|
+
"tooling",
|
|
938
|
+
"executeAnonymous",
|
|
939
|
+
""
|
|
940
|
+
],
|
|
941
|
+
"query": [
|
|
942
|
+
{
|
|
943
|
+
"key": "anonymousBody",
|
|
944
|
+
"value": "System.Debug('awesome');"
|
|
945
|
+
}
|
|
946
|
+
]
|
|
947
|
+
},
|
|
948
|
+
"description": "Executes Apex code anonymously. Available from API version 29.0 or later."
|
|
949
|
+
},
|
|
950
|
+
"response": [
|
|
951
|
+
{
|
|
952
|
+
"name": "Tooling ExecuteAnonymous",
|
|
953
|
+
"originalRequest": {
|
|
954
|
+
"method": "GET",
|
|
955
|
+
"header": [
|
|
956
|
+
{
|
|
957
|
+
"key": "Content-Type",
|
|
958
|
+
"value": "application/json",
|
|
959
|
+
"disabled": true
|
|
960
|
+
}
|
|
961
|
+
],
|
|
962
|
+
"body": {
|
|
963
|
+
"mode": "raw",
|
|
964
|
+
"raw": ""
|
|
965
|
+
},
|
|
966
|
+
"url": {
|
|
967
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/executeAnonymous/?anonymousBody=System.Debug('awesome');",
|
|
968
|
+
"host": [
|
|
969
|
+
"{{_endpoint}}"
|
|
970
|
+
],
|
|
971
|
+
"path": [
|
|
972
|
+
"services",
|
|
973
|
+
"data",
|
|
974
|
+
"v{{version}}",
|
|
975
|
+
"tooling",
|
|
976
|
+
"executeAnonymous",
|
|
977
|
+
""
|
|
978
|
+
],
|
|
979
|
+
"query": [
|
|
980
|
+
{
|
|
981
|
+
"key": "anonymousBody",
|
|
982
|
+
"value": "System.Debug('awesome');"
|
|
983
|
+
}
|
|
984
|
+
]
|
|
985
|
+
}
|
|
986
|
+
},
|
|
987
|
+
"status": "OK",
|
|
988
|
+
"code": 200,
|
|
989
|
+
"_postman_previewlanguage": "json",
|
|
990
|
+
"header": [
|
|
991
|
+
{
|
|
992
|
+
"key": "Date",
|
|
993
|
+
"value": "Mon, 11 Dec 2023 09:21:01 GMT"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"key": "Strict-Transport-Security",
|
|
997
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"key": "X-Content-Type-Options",
|
|
1001
|
+
"value": "nosniff"
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"key": "X-Robots-Tag",
|
|
1005
|
+
"value": "none"
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
"key": "Cache-Control",
|
|
1009
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
"key": "Sforce-Limit-Info",
|
|
1013
|
+
"value": "api-usage=10/15000"
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"key": "Content-Type",
|
|
1017
|
+
"value": "application/json;charset=UTF-8"
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"key": "Vary",
|
|
1021
|
+
"value": "Accept-Encoding"
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
"key": "Content-Encoding",
|
|
1025
|
+
"value": "gzip"
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"key": "Transfer-Encoding",
|
|
1029
|
+
"value": "chunked"
|
|
1030
|
+
}
|
|
1031
|
+
],
|
|
1032
|
+
"cookie": [],
|
|
1033
|
+
"body": "{\n \"line\": -1,\n \"column\": -1,\n \"compiled\": true,\n \"success\": true,\n \"compileProblem\": null,\n \"exceptionStackTrace\": null,\n \"exceptionMessage\": null\n}"
|
|
1034
|
+
}
|
|
1035
|
+
]
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"name": "Tooling Query",
|
|
1039
|
+
"protocolProfileBehavior": {
|
|
1040
|
+
"disableBodyPruning": true
|
|
1041
|
+
},
|
|
1042
|
+
"request": {
|
|
1043
|
+
"method": "GET",
|
|
1044
|
+
"header": [
|
|
1045
|
+
{
|
|
1046
|
+
"key": "Content-Type",
|
|
1047
|
+
"type": "text",
|
|
1048
|
+
"value": "application/json",
|
|
1049
|
+
"disabled": true
|
|
1050
|
+
}
|
|
1051
|
+
],
|
|
1052
|
+
"body": {
|
|
1053
|
+
"mode": "raw",
|
|
1054
|
+
"raw": ""
|
|
1055
|
+
},
|
|
1056
|
+
"url": {
|
|
1057
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/query/?q=",
|
|
1058
|
+
"host": [
|
|
1059
|
+
"{{_endpoint}}"
|
|
1060
|
+
],
|
|
1061
|
+
"path": [
|
|
1062
|
+
"services",
|
|
1063
|
+
"data",
|
|
1064
|
+
"v{{version}}",
|
|
1065
|
+
"tooling",
|
|
1066
|
+
"query",
|
|
1067
|
+
""
|
|
1068
|
+
],
|
|
1069
|
+
"query": [
|
|
1070
|
+
{
|
|
1071
|
+
"key": "q",
|
|
1072
|
+
"value": "",
|
|
1073
|
+
"description": "SOQL Query"
|
|
1074
|
+
}
|
|
1075
|
+
]
|
|
1076
|
+
},
|
|
1077
|
+
"description": "Executes a query against an object and returns data that matches the specified criteria. Tooling API exposes objects like EntityDefinition and FieldDefinition that use the external object framework. That is, they don’t exist in the database but are constructed dynamically. Special query rules apply to virtual entities.\nIf the query result is too large, it’s broken up into batches. The response contains the first batch of results and a query identifier. The identifier can be used in a request to retrieve the next batch."
|
|
1078
|
+
},
|
|
1079
|
+
"response": [
|
|
1080
|
+
{
|
|
1081
|
+
"name": "Tooling Query",
|
|
1082
|
+
"originalRequest": {
|
|
1083
|
+
"method": "GET",
|
|
1084
|
+
"header": [
|
|
1085
|
+
{
|
|
1086
|
+
"key": "Content-Type",
|
|
1087
|
+
"value": "application/json",
|
|
1088
|
+
"disabled": true
|
|
1089
|
+
}
|
|
1090
|
+
],
|
|
1091
|
+
"body": {
|
|
1092
|
+
"mode": "raw",
|
|
1093
|
+
"raw": ""
|
|
1094
|
+
},
|
|
1095
|
+
"url": {
|
|
1096
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/query/?q=SELECT Name FROM ApexClass",
|
|
1097
|
+
"host": [
|
|
1098
|
+
"{{_endpoint}}"
|
|
1099
|
+
],
|
|
1100
|
+
"path": [
|
|
1101
|
+
"services",
|
|
1102
|
+
"data",
|
|
1103
|
+
"v{{version}}",
|
|
1104
|
+
"tooling",
|
|
1105
|
+
"query",
|
|
1106
|
+
""
|
|
1107
|
+
],
|
|
1108
|
+
"query": [
|
|
1109
|
+
{
|
|
1110
|
+
"key": "q",
|
|
1111
|
+
"value": "SELECT Name FROM ApexClass",
|
|
1112
|
+
"description": "SOQL Query"
|
|
1113
|
+
}
|
|
1114
|
+
]
|
|
1115
|
+
}
|
|
1116
|
+
},
|
|
1117
|
+
"status": "OK",
|
|
1118
|
+
"code": 200,
|
|
1119
|
+
"_postman_previewlanguage": "json",
|
|
1120
|
+
"header": [
|
|
1121
|
+
{
|
|
1122
|
+
"key": "Date",
|
|
1123
|
+
"value": "Mon, 11 Dec 2023 09:36:10 GMT"
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
"key": "Strict-Transport-Security",
|
|
1127
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
"key": "X-Content-Type-Options",
|
|
1131
|
+
"value": "nosniff"
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
"key": "X-Robots-Tag",
|
|
1135
|
+
"value": "none"
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"key": "Cache-Control",
|
|
1139
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
1140
|
+
},
|
|
1141
|
+
{
|
|
1142
|
+
"key": "Sforce-Limit-Info",
|
|
1143
|
+
"value": "api-usage=93/15000"
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
"key": "Content-Type",
|
|
1147
|
+
"value": "application/json;charset=UTF-8"
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
"key": "Vary",
|
|
1151
|
+
"value": "Accept-Encoding"
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
"key": "Content-Encoding",
|
|
1155
|
+
"value": "gzip"
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"key": "Transfer-Encoding",
|
|
1159
|
+
"value": "chunked"
|
|
1160
|
+
}
|
|
1161
|
+
],
|
|
1162
|
+
"cookie": [],
|
|
1163
|
+
"body": "{\n \"size\": 38,\n \"totalSize\": 38,\n \"done\": true,\n \"queryLocator\": null,\n \"entityTypeName\": \"ApexClass\",\n \"records\": [\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A4kfqQAB\"\n },\n \"Name\": \"GenericEventPostMock\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A4kfrQAB\"\n },\n \"Name\": \"StreamingMonitorController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A4kfsQAB\"\n },\n \"Name\": \"StreamingMonitorControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p58000009UEeJAAW\"\n },\n \"Name\": \"MyController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p58000009UDoMAAW\"\n },\n \"Name\": \"ProcessingController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p4H000009PEFIQA4\"\n },\n \"Name\": \"PrepareSandbox\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A0zYxQAJ\"\n },\n \"Name\": \"PrepareSandboxTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqEAAQ\"\n },\n \"Name\": \"MyProfilePageController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090uh7AAA\"\n },\n \"Name\": \"InTheArea\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq6AAA\"\n },\n \"Name\": \"SiteLoginController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq7AAA\"\n },\n \"Name\": \"SiteLoginControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq8AAA\"\n },\n \"Name\": \"SiteRegisterController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq9AAA\"\n },\n \"Name\": \"SiteRegisterControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqAAAQ\"\n },\n \"Name\": \"ChangePasswordController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqBAAQ\"\n },\n \"Name\": \"ChangePasswordControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqCAAQ\"\n },\n \"Name\": \"ForgotPasswordController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqDAAQ\"\n },\n \"Name\": \"ForgotPasswordControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqFAAQ\"\n },\n \"Name\": \"MyProfilePageControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqOAAQ\"\n },\n \"Name\": \"CommunitiesLoginController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqPAAQ\"\n },\n \"Name\": \"CommunitiesLoginControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqQAAQ\"\n },\n \"Name\": \"CommunitiesLandingController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqRAAQ\"\n },\n \"Name\": \"CommunitiesLandingControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqSAAQ\"\n },\n \"Name\": \"CommunitiesSelfRegController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqTAAQ\"\n },\n \"Name\": \"CommunitiesSelfRegControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqUAAQ\"\n },\n \"Name\": \"CommunitiesSelfRegConfirmController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqVAAQ\"\n },\n \"Name\": \"CommunitiesSelfRegConfirmControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqcAAA\"\n },\n \"Name\": \"LightningSelfRegisterController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqdAAA\"\n },\n \"Name\": \"LightningForgotPasswordController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqeAAA\"\n },\n \"Name\": \"LightningLoginFormController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqfAAA\"\n },\n \"Name\": \"LightningLoginFormControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqgAAA\"\n },\n \"Name\": \"LightningForgotPasswordControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqhAAA\"\n },\n \"Name\": \"LightningSelfRegisterControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wrUAAQ\"\n },\n \"Name\": \"SigninController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090sf4AAA\"\n },\n \"Name\": \"trailheadAPIChallenge\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000ANdnqQAD\"\n },\n \"Name\": \"AccountTriggerHelperTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000ANdnpQAD\"\n },\n \"Name\": \"AccountTriggerHelper\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p4H000009aIwvQAE\"\n },\n \"Name\": \"MicrobatchSelfRegControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p4H000009aIwuQAE\"\n },\n \"Name\": \"MicrobatchSelfRegController\"\n }\n ]\n}"
|
|
1164
|
+
}
|
|
1165
|
+
]
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"name": "Tooling Run Tests Async",
|
|
1169
|
+
"request": {
|
|
1170
|
+
"method": "POST",
|
|
1171
|
+
"header": [
|
|
1172
|
+
{
|
|
1173
|
+
"key": "Content-Type",
|
|
1174
|
+
"name": "Content-Type",
|
|
1175
|
+
"value": "application/json",
|
|
1176
|
+
"type": "text"
|
|
1177
|
+
}
|
|
1178
|
+
],
|
|
1179
|
+
"body": {
|
|
1180
|
+
"mode": "raw",
|
|
1181
|
+
"raw": "{\n \"classNames\": \"comma-separated list of class names\",\n \"classids\": \"comma-separated list of class IDs\",\n \"suiteNames\": \"comma-separated list of test suite names\",\n \"suiteids\": \"comma-separated list of test suite IDs\",\n \"maxFailedTests\": \"integer value\",\n \"testLevel\": \"TestLevel enum value\",\n \"skipCodeCoverage\": \"boolean value\"\n}\n\nor \n\n{\n \"tests\": [\n {\n \"className\": \"YourClassName\",\n \"testMethods\": [\n \"testMethod1\",\n \"testMethod2\",\n \"testMethod3\"\n ]\n }\n ],\n \"maxFailedTests\": \"integer value\",\n \"testLevel\": \"TestLevel enum value\",\n \"skipCodeCoverage\": \"boolean value\"\n}\n",
|
|
1182
|
+
"options": {
|
|
1183
|
+
"raw": {
|
|
1184
|
+
"language": "json"
|
|
1185
|
+
}
|
|
1186
|
+
}
|
|
1187
|
+
},
|
|
1188
|
+
"url": {
|
|
1189
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/runTestsAsynchronous",
|
|
1190
|
+
"host": [
|
|
1191
|
+
"{{_endpoint}}"
|
|
1192
|
+
],
|
|
1193
|
+
"path": [
|
|
1194
|
+
"services",
|
|
1195
|
+
"data",
|
|
1196
|
+
"v{{version}}",
|
|
1197
|
+
"tooling",
|
|
1198
|
+
"runTestsAsynchronous"
|
|
1199
|
+
]
|
|
1200
|
+
},
|
|
1201
|
+
"description": "Runs one or more methods within one or more Apex classes, using the asynchronous test execution mechanism. In the request body, you can specify test class names and IDs, suite names and IDs, the maximum number of failed tests to allow, and the test level, as comma-separated lists or as an array. You can also indicate whether to opt out of collecting code coverage information during the test run (available in API version 43.0 and later)."
|
|
1202
|
+
},
|
|
1203
|
+
"response": [
|
|
1204
|
+
{
|
|
1205
|
+
"name": "Tooling Run Tests Async",
|
|
1206
|
+
"originalRequest": {
|
|
1207
|
+
"method": "POST",
|
|
1208
|
+
"header": [
|
|
1209
|
+
{
|
|
1210
|
+
"key": "Content-Type",
|
|
1211
|
+
"value": "application/json"
|
|
1212
|
+
}
|
|
1213
|
+
],
|
|
1214
|
+
"body": {
|
|
1215
|
+
"mode": "raw",
|
|
1216
|
+
"raw": "{\n \"tests\": [\n {\n \"className\": \"PrepareSandboxTest\",\n \"testMethods\": [\n \"runApexClass_should_work\"\n ]\n }\n ],\n \"maxFailedTests\": \"1\"\n}",
|
|
1217
|
+
"options": {
|
|
1218
|
+
"raw": {
|
|
1219
|
+
"language": "json"
|
|
1220
|
+
}
|
|
1221
|
+
}
|
|
1222
|
+
},
|
|
1223
|
+
"url": {
|
|
1224
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/runTestsAsynchronous",
|
|
1225
|
+
"host": [
|
|
1226
|
+
"{{_endpoint}}"
|
|
1227
|
+
],
|
|
1228
|
+
"path": [
|
|
1229
|
+
"services",
|
|
1230
|
+
"data",
|
|
1231
|
+
"v{{version}}",
|
|
1232
|
+
"tooling",
|
|
1233
|
+
"runTestsAsynchronous"
|
|
1234
|
+
]
|
|
1235
|
+
}
|
|
1236
|
+
},
|
|
1237
|
+
"status": "OK",
|
|
1238
|
+
"code": 200,
|
|
1239
|
+
"_postman_previewlanguage": "json",
|
|
1240
|
+
"header": [
|
|
1241
|
+
{
|
|
1242
|
+
"key": "Date",
|
|
1243
|
+
"value": "Mon, 11 Dec 2023 10:04:34 GMT"
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
"key": "Strict-Transport-Security",
|
|
1247
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
"key": "X-Content-Type-Options",
|
|
1251
|
+
"value": "nosniff"
|
|
1252
|
+
},
|
|
1253
|
+
{
|
|
1254
|
+
"key": "X-Robots-Tag",
|
|
1255
|
+
"value": "none"
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
"key": "Cache-Control",
|
|
1259
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
1260
|
+
},
|
|
1261
|
+
{
|
|
1262
|
+
"key": "Sforce-Limit-Info",
|
|
1263
|
+
"value": "api-usage=250/15000"
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
"key": "Content-Type",
|
|
1267
|
+
"value": "application/json;charset=UTF-8"
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
"key": "Vary",
|
|
1271
|
+
"value": "Accept-Encoding"
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
"key": "Content-Encoding",
|
|
1275
|
+
"value": "gzip"
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
"key": "Transfer-Encoding",
|
|
1279
|
+
"value": "chunked"
|
|
1280
|
+
}
|
|
1281
|
+
],
|
|
1282
|
+
"cookie": [],
|
|
1283
|
+
"body": "\"7074H0000DCt2IZ\""
|
|
1284
|
+
}
|
|
1285
|
+
]
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
"name": "Tooling Run Tests Sync",
|
|
1289
|
+
"request": {
|
|
1290
|
+
"method": "POST",
|
|
1291
|
+
"header": [
|
|
1292
|
+
{
|
|
1293
|
+
"key": "Content-Type",
|
|
1294
|
+
"name": "Content-Type",
|
|
1295
|
+
"type": "text",
|
|
1296
|
+
"value": "application/json"
|
|
1297
|
+
}
|
|
1298
|
+
],
|
|
1299
|
+
"body": {
|
|
1300
|
+
"mode": "raw",
|
|
1301
|
+
"raw": "[\n {\n \"className\": \"YourClassName\",\n \"testMethods\": [\n \"testMethod1\",\n \"testMethod2\",\n \"testMethod3\"\n ]\n },\n {\n \"maxFailedTests\": \"2\"\n }\n]\n\nor\n\n{\n \"tests\": [\n {\n \"className\": \"YourClassName\",\n \"testMethods\": [\n \"testMethod1\",\n \"testMethod2\",\n \"testMethod3\"\n ]\n }\n ],\n \"maxFailedTests\": \"integer value\",\n \"testLevel\": \"TestLevel enum value\",\n \"skipCodeCoverage\": \"boolean value\"\n}\n",
|
|
1302
|
+
"options": {
|
|
1303
|
+
"raw": {
|
|
1304
|
+
"language": "json"
|
|
1305
|
+
}
|
|
1306
|
+
}
|
|
1307
|
+
},
|
|
1308
|
+
"url": {
|
|
1309
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/runTestsSynchronous",
|
|
1310
|
+
"host": [
|
|
1311
|
+
"{{_endpoint}}"
|
|
1312
|
+
],
|
|
1313
|
+
"path": [
|
|
1314
|
+
"services",
|
|
1315
|
+
"data",
|
|
1316
|
+
"v{{version}}",
|
|
1317
|
+
"tooling",
|
|
1318
|
+
"runTestsSynchronous"
|
|
1319
|
+
]
|
|
1320
|
+
},
|
|
1321
|
+
"description": "Runs one or more methods within one or more Apex classes, using the asynchronous test execution mechanism. In the request body, you can specify test class names and IDs, suite names and IDs, the maximum number of failed tests to allow, and the test level, as comma-separated lists or as an array. You can also indicate whether to opt out of collecting code coverage information during the test run (available in API version 43.0 and later)."
|
|
1322
|
+
},
|
|
1323
|
+
"response": [
|
|
1324
|
+
{
|
|
1325
|
+
"name": "Tooling Run Tests Sync",
|
|
1326
|
+
"originalRequest": {
|
|
1327
|
+
"method": "POST",
|
|
1328
|
+
"header": [
|
|
1329
|
+
{
|
|
1330
|
+
"key": "Content-Type",
|
|
1331
|
+
"value": "application/json"
|
|
1332
|
+
}
|
|
1333
|
+
],
|
|
1334
|
+
"body": {
|
|
1335
|
+
"mode": "raw",
|
|
1336
|
+
"raw": "{\n \"tests\": [\n {\n \"className\": \"PrepareSandboxTest\",\n \"testMethods\": [\n \"runApexClass_should_work\"\n ]\n }\n ],\n \"maxFailedTests\": \"1\"\n}",
|
|
1337
|
+
"options": {
|
|
1338
|
+
"raw": {
|
|
1339
|
+
"language": "json"
|
|
1340
|
+
}
|
|
1341
|
+
}
|
|
1342
|
+
},
|
|
1343
|
+
"url": {
|
|
1344
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/runTestsSynchronous",
|
|
1345
|
+
"host": [
|
|
1346
|
+
"{{_endpoint}}"
|
|
1347
|
+
],
|
|
1348
|
+
"path": [
|
|
1349
|
+
"services",
|
|
1350
|
+
"data",
|
|
1351
|
+
"v{{version}}",
|
|
1352
|
+
"tooling",
|
|
1353
|
+
"runTestsSynchronous"
|
|
1354
|
+
]
|
|
1355
|
+
}
|
|
1356
|
+
},
|
|
1357
|
+
"status": "OK",
|
|
1358
|
+
"code": 200,
|
|
1359
|
+
"_postman_previewlanguage": "json",
|
|
1360
|
+
"header": [
|
|
1361
|
+
{
|
|
1362
|
+
"key": "Date",
|
|
1363
|
+
"value": "Mon, 11 Dec 2023 09:59:37 GMT"
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
"key": "Strict-Transport-Security",
|
|
1367
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
"key": "X-Content-Type-Options",
|
|
1371
|
+
"value": "nosniff"
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
"key": "X-Robots-Tag",
|
|
1375
|
+
"value": "none"
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"key": "Cache-Control",
|
|
1379
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
"key": "Sforce-Limit-Info",
|
|
1383
|
+
"value": "api-usage=246/15000"
|
|
1384
|
+
},
|
|
1385
|
+
{
|
|
1386
|
+
"key": "Content-Type",
|
|
1387
|
+
"value": "application/json;charset=UTF-8"
|
|
1388
|
+
},
|
|
1389
|
+
{
|
|
1390
|
+
"key": "Vary",
|
|
1391
|
+
"value": "Accept-Encoding"
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
"key": "Content-Encoding",
|
|
1395
|
+
"value": "gzip"
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"key": "Transfer-Encoding",
|
|
1399
|
+
"value": "chunked"
|
|
1400
|
+
}
|
|
1401
|
+
],
|
|
1402
|
+
"cookie": [],
|
|
1403
|
+
"body": "{\n \"apexLogId\": \"07L4H00000SpGroUAF\",\n \"codeCoverage\": [\n {\n \"id\": \"01q4H000000WjD8QAK\",\n \"locationsNotCovered\": [\n {},\n {}\n ],\n \"name\": \"StateTrigger\",\n \"namespace\": null,\n \"numLocations\": 2,\n \"numLocationsNotCovered\": 2,\n \"type\": \"Trigger\"\n },\n {\n \"id\": \"01q58000000RLTyAAO\",\n \"locationsNotCovered\": [\n {},\n {},\n {}\n ],\n \"name\": \"RestrictContactByName\",\n \"namespace\": null,\n \"numLocations\": 3,\n \"numLocationsNotCovered\": 3,\n \"type\": \"Trigger\"\n },\n {\n \"id\": \"01q58000000RLBhAAO\",\n \"locationsNotCovered\": [\n {},\n {},\n {},\n {},\n {},\n {}\n ],\n \"name\": \"ClosedOpportunityTrigger\",\n \"namespace\": null,\n \"numLocations\": 6,\n \"numLocationsNotCovered\": 6,\n \"type\": \"Trigger\"\n },\n {\n \"id\": \"01p4H000009PEFIQA4\",\n \"locationsNotCovered\": [\n {},\n {}\n ],\n \"name\": \"PrepareSandbox\",\n \"namespace\": null,\n \"numLocations\": 22,\n \"numLocationsNotCovered\": 2,\n \"type\": \"Class\"\n }\n ],\n \"codeCoverageWarnings\": [\n {\n \"id\": \"01q4H000000WjD8QAK\",\n \"message\": \"Test coverage of selected Apex Trigger is 0%, at least 1% test coverage is required\",\n \"name\": \"StateTrigger\",\n \"namespace\": null\n },\n {\n \"id\": \"01q58000000RLTyAAO\",\n \"message\": \"Test coverage of selected Apex Trigger is 0%, at least 1% test coverage is required\",\n \"name\": \"RestrictContactByName\",\n \"namespace\": null\n },\n {\n \"id\": \"01q58000000RLBhAAO\",\n \"message\": \"Test coverage of selected Apex Trigger is 0%, at least 1% test coverage is required\",\n \"name\": \"ClosedOpportunityTrigger\",\n \"namespace\": null\n },\n {\n \"id\": \"01q4H000000WjD8QAK\",\n \"message\": \"Average test coverage across all Apex Classes and Triggers is 60%, at least 75% test coverage is required.\",\n \"name\": null,\n \"namespace\": \"\"\n }\n ],\n \"failures\": [],\n \"flowCoverage\": [],\n \"flowCoverageWarnings\": [],\n \"numFailures\": 0,\n \"numTestsRun\": 1,\n \"successes\": [\n {\n \"id\": \"01p4H00000A0zYxQAJ\",\n \"methodName\": \"runApexClass_should_work\",\n \"name\": \"PrepareSandboxTest\",\n \"namespace\": null,\n \"seeAllData\": false,\n \"time\": 1088\n }\n ],\n \"totalTime\": 1261\n}"
|
|
1404
|
+
}
|
|
1405
|
+
]
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
"name": "Tooling Search",
|
|
1409
|
+
"protocolProfileBehavior": {
|
|
1410
|
+
"disableBodyPruning": true
|
|
1411
|
+
},
|
|
1412
|
+
"request": {
|
|
1413
|
+
"method": "GET",
|
|
1414
|
+
"header": [
|
|
1415
|
+
{
|
|
1416
|
+
"key": "Content-Type",
|
|
1417
|
+
"name": "Content-Type",
|
|
1418
|
+
"type": "text",
|
|
1419
|
+
"value": "application/json"
|
|
1420
|
+
}
|
|
1421
|
+
],
|
|
1422
|
+
"body": {
|
|
1423
|
+
"mode": "raw",
|
|
1424
|
+
"raw": "[\n {\n \"className\": \"YourClassName\",\n \"testMethods\": [\n \"testMethod1\",\n \"testMethod2\",\n \"testMethod3\"\n ]\n },\n {\n \"maxFailedTests\": \"2\"\n }\n]\n\nor\n\n[\n {\n \"classId\": \"01pD0000000Fhy9IAC\",\n \"testMethods\": [\n \"testMethod1\",\n \"testMethod2\",\n \"testMethod3\"\n ]\n },\n {\n \"maxFailedTests\": \"2\"\n }\n]",
|
|
1425
|
+
"options": {
|
|
1426
|
+
"raw": {
|
|
1427
|
+
"language": "json"
|
|
1428
|
+
}
|
|
1429
|
+
}
|
|
1430
|
+
},
|
|
1431
|
+
"url": {
|
|
1432
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/search?q=",
|
|
1433
|
+
"host": [
|
|
1434
|
+
"{{_endpoint}}"
|
|
1435
|
+
],
|
|
1436
|
+
"path": [
|
|
1437
|
+
"services",
|
|
1438
|
+
"data",
|
|
1439
|
+
"v{{version}}",
|
|
1440
|
+
"tooling",
|
|
1441
|
+
"search"
|
|
1442
|
+
],
|
|
1443
|
+
"query": [
|
|
1444
|
+
{
|
|
1445
|
+
"key": "q",
|
|
1446
|
+
"value": "",
|
|
1447
|
+
"description": "SOSL search statement"
|
|
1448
|
+
}
|
|
1449
|
+
]
|
|
1450
|
+
},
|
|
1451
|
+
"description": "Runs one or more methods within one or more Apex classes, using the asynchronous test execution mechanism. In the request body, you can specify test class names and IDs, suite names and IDs, the maximum number of failed tests to allow, and the test level, as comma-separated lists or as an array. You can also indicate whether to opt out of collecting code coverage information during the test run (available in API version 43.0 and later)."
|
|
1452
|
+
},
|
|
1453
|
+
"response": [
|
|
1454
|
+
{
|
|
1455
|
+
"name": "Tooling Search",
|
|
1456
|
+
"originalRequest": {
|
|
1457
|
+
"method": "GET",
|
|
1458
|
+
"header": [
|
|
1459
|
+
{
|
|
1460
|
+
"key": "Content-Type",
|
|
1461
|
+
"value": "application/json"
|
|
1462
|
+
}
|
|
1463
|
+
],
|
|
1464
|
+
"body": {
|
|
1465
|
+
"mode": "raw",
|
|
1466
|
+
"raw": "[\n {\n \"className\": \"YourClassName\",\n \"testMethods\": [\n \"testMethod1\",\n \"testMethod2\",\n \"testMethod3\"\n ]\n },\n {\n \"maxFailedTests\": \"2\"\n }\n]\n\nor\n\n[\n {\n \"classId\": \"01pD0000000Fhy9IAC\",\n \"testMethods\": [\n \"testMethod1\",\n \"testMethod2\",\n \"testMethod3\"\n ]\n },\n {\n \"maxFailedTests\": \"2\"\n }\n]",
|
|
1467
|
+
"options": {
|
|
1468
|
+
"raw": {
|
|
1469
|
+
"language": "json"
|
|
1470
|
+
}
|
|
1471
|
+
}
|
|
1472
|
+
},
|
|
1473
|
+
"url": {
|
|
1474
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/search?q=FIND {test*} IN ALL FIELDS RETURNING ApexClass (Name)",
|
|
1475
|
+
"host": [
|
|
1476
|
+
"{{_endpoint}}"
|
|
1477
|
+
],
|
|
1478
|
+
"path": [
|
|
1479
|
+
"services",
|
|
1480
|
+
"data",
|
|
1481
|
+
"v{{version}}",
|
|
1482
|
+
"tooling",
|
|
1483
|
+
"search"
|
|
1484
|
+
],
|
|
1485
|
+
"query": [
|
|
1486
|
+
{
|
|
1487
|
+
"key": "q",
|
|
1488
|
+
"value": "FIND {test*} IN ALL FIELDS RETURNING ApexClass (Name)",
|
|
1489
|
+
"description": "SOSL_Search_Statement"
|
|
1490
|
+
}
|
|
1491
|
+
]
|
|
1492
|
+
}
|
|
1493
|
+
},
|
|
1494
|
+
"status": "OK",
|
|
1495
|
+
"code": 200,
|
|
1496
|
+
"_postman_previewlanguage": "json",
|
|
1497
|
+
"header": [
|
|
1498
|
+
{
|
|
1499
|
+
"key": "Date",
|
|
1500
|
+
"value": "Mon, 11 Dec 2023 10:34:10 GMT"
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
"key": "Strict-Transport-Security",
|
|
1504
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
"key": "X-Content-Type-Options",
|
|
1508
|
+
"value": "nosniff"
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
"key": "X-Robots-Tag",
|
|
1512
|
+
"value": "none"
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"key": "Cache-Control",
|
|
1516
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
"key": "Sforce-Limit-Info",
|
|
1520
|
+
"value": "api-usage=294/15000"
|
|
1521
|
+
},
|
|
1522
|
+
{
|
|
1523
|
+
"key": "queryId",
|
|
1524
|
+
"value": "-mxbcxdoqukvy"
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
"key": "Content-Type",
|
|
1528
|
+
"value": "application/json;charset=UTF-8"
|
|
1529
|
+
},
|
|
1530
|
+
{
|
|
1531
|
+
"key": "Vary",
|
|
1532
|
+
"value": "Accept-Encoding"
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
"key": "Content-Encoding",
|
|
1536
|
+
"value": "gzip"
|
|
1537
|
+
},
|
|
1538
|
+
{
|
|
1539
|
+
"key": "Transfer-Encoding",
|
|
1540
|
+
"value": "chunked"
|
|
1541
|
+
}
|
|
1542
|
+
],
|
|
1543
|
+
"cookie": [],
|
|
1544
|
+
"body": "{\n \"searchRecords\": [\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqcAAA\"\n },\n \"Name\": \"LightningSelfRegisterController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqhAAA\"\n },\n \"Name\": \"LightningSelfRegisterControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq9AAA\"\n },\n \"Name\": \"SiteRegisterControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A0zYxQAJ\"\n },\n \"Name\": \"PrepareSandboxTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqTAAQ\"\n },\n \"Name\": \"CommunitiesSelfRegControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p4H000009aIwvQAE\"\n },\n \"Name\": \"MicrobatchSelfRegControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p4H000009PEFIQA4\"\n },\n \"Name\": \"PrepareSandbox\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqRAAQ\"\n },\n \"Name\": \"CommunitiesLandingControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqFAAQ\"\n },\n \"Name\": \"MyProfilePageControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqDAAQ\"\n },\n \"Name\": \"ForgotPasswordControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq7AAA\"\n },\n \"Name\": \"SiteLoginControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000ANdnqQAD\"\n },\n \"Name\": \"AccountTriggerHelperTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqgAAA\"\n },\n \"Name\": \"LightningForgotPasswordControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqfAAA\"\n },\n \"Name\": \"LightningLoginFormControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqeAAA\"\n },\n \"Name\": \"LightningLoginFormController\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqVAAQ\"\n },\n \"Name\": \"CommunitiesSelfRegConfirmControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqPAAQ\"\n },\n \"Name\": \"CommunitiesLoginControllerTest\"\n },\n {\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqBAAQ\"\n },\n \"Name\": \"ChangePasswordControllerTest\"\n }\n ]\n}"
|
|
1545
|
+
}
|
|
1546
|
+
]
|
|
1547
|
+
},
|
|
1548
|
+
{
|
|
1549
|
+
"name": "Get Tooling Describe",
|
|
1550
|
+
"request": {
|
|
1551
|
+
"method": "GET",
|
|
1552
|
+
"header": [],
|
|
1553
|
+
"url": {
|
|
1554
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/",
|
|
1555
|
+
"host": [
|
|
1556
|
+
"{{_endpoint}}"
|
|
1557
|
+
],
|
|
1558
|
+
"path": [
|
|
1559
|
+
"services",
|
|
1560
|
+
"data",
|
|
1561
|
+
"v{{version}}",
|
|
1562
|
+
"tooling",
|
|
1563
|
+
"sobjects",
|
|
1564
|
+
""
|
|
1565
|
+
]
|
|
1566
|
+
},
|
|
1567
|
+
"description": "Lists the available Tooling API objects and their metadata."
|
|
1568
|
+
},
|
|
1569
|
+
"response": [
|
|
1570
|
+
{
|
|
1571
|
+
"name": "Get Tooling Describe",
|
|
1572
|
+
"originalRequest": {
|
|
1573
|
+
"method": "GET",
|
|
1574
|
+
"header": [],
|
|
1575
|
+
"url": {
|
|
1576
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/",
|
|
1577
|
+
"host": [
|
|
1578
|
+
"{{_endpoint}}"
|
|
1579
|
+
],
|
|
1580
|
+
"path": [
|
|
1581
|
+
"services",
|
|
1582
|
+
"data",
|
|
1583
|
+
"v{{version}}",
|
|
1584
|
+
"tooling",
|
|
1585
|
+
"sobjects",
|
|
1586
|
+
""
|
|
1587
|
+
]
|
|
1588
|
+
}
|
|
1589
|
+
},
|
|
1590
|
+
"status": "OK",
|
|
1591
|
+
"code": 200,
|
|
1592
|
+
"_postman_previewlanguage": "json",
|
|
1593
|
+
"header": [
|
|
1594
|
+
{
|
|
1595
|
+
"key": "Date",
|
|
1596
|
+
"value": "Mon, 11 Dec 2023 10:35:19 GMT"
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
"key": "Strict-Transport-Security",
|
|
1600
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
1601
|
+
},
|
|
1602
|
+
{
|
|
1603
|
+
"key": "X-Content-Type-Options",
|
|
1604
|
+
"value": "nosniff"
|
|
1605
|
+
},
|
|
1606
|
+
{
|
|
1607
|
+
"key": "X-Robots-Tag",
|
|
1608
|
+
"value": "none"
|
|
1609
|
+
},
|
|
1610
|
+
{
|
|
1611
|
+
"key": "Cache-Control",
|
|
1612
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
1613
|
+
},
|
|
1614
|
+
{
|
|
1615
|
+
"key": "Sforce-Limit-Info",
|
|
1616
|
+
"value": "api-usage=298/15000"
|
|
1617
|
+
},
|
|
1618
|
+
{
|
|
1619
|
+
"key": "ETag",
|
|
1620
|
+
"value": "\"b0436952--gzip\""
|
|
1621
|
+
},
|
|
1622
|
+
{
|
|
1623
|
+
"key": "Last-Modified",
|
|
1624
|
+
"value": "Mon, 11 Dec 2023 09:28:13 GMT"
|
|
1625
|
+
},
|
|
1626
|
+
{
|
|
1627
|
+
"key": "Content-Type",
|
|
1628
|
+
"value": "application/json;charset=UTF-8"
|
|
1629
|
+
},
|
|
1630
|
+
{
|
|
1631
|
+
"key": "Vary",
|
|
1632
|
+
"value": "Accept-Encoding"
|
|
1633
|
+
},
|
|
1634
|
+
{
|
|
1635
|
+
"key": "Content-Encoding",
|
|
1636
|
+
"value": "gzip"
|
|
1637
|
+
},
|
|
1638
|
+
{
|
|
1639
|
+
"key": "Transfer-Encoding",
|
|
1640
|
+
"value": "chunked"
|
|
1641
|
+
}
|
|
1642
|
+
],
|
|
1643
|
+
"cookie": [],
|
|
1644
|
+
"body": "{\n \"encoding\": \"UTF-8\",\n \"maxBatchSize\": 200,\n \"sobjects\": [\n {\n \"activateable\": false,\n \"associateEntityType\": null,\n \"associateParentEntity\": null,\n \"createable\": true,\n \"custom\": false,\n \"customSetting\": false,\n \"deepCloneable\": false,\n \"deletable\": true,\n \"deprecatedAndHidden\": false,\n \"feedEnabled\": false,\n \"hasSubtypes\": false,\n \"isInterface\": false,\n \"isSubtype\": false,\n \"keyPrefix\": \"0Pp\",\n \"label\": \"AI Application\",\n \"labelPlural\": \"AI Applications\",\n \"layoutable\": false,\n \"mergeable\": false,\n \"mruEnabled\": false,\n \"name\": \"AIApplication\",\n \"queryable\": true,\n \"replicateable\": false,\n \"retrieveable\": true,\n \"searchable\": false,\n \"triggerable\": false,\n \"undeletable\": false,\n \"updateable\": true,\n \"urls\": {\n \"rowTemplate\": \"/services/data/v59.0/tooling/sobjects/AIApplication/{ID}\",\n \"describe\": \"/services/data/v59.0/tooling/sobjects/AIApplication/describe\",\n \"sobject\": \"/services/data/v59.0/tooling/sobjects/AIApplication\"\n }\n },\n {\n \"activateable\": false,\n \"associateEntityType\": null,\n \"associateParentEntity\": null,\n \"createable\": true,\n \"custom\": false,\n \"customSetting\": false,\n \"deepCloneable\": false,\n \"deletable\": true,\n \"deprecatedAndHidden\": false,\n \"feedEnabled\": false,\n \"hasSubtypes\": false,\n \"isInterface\": false,\n \"isSubtype\": false,\n \"keyPrefix\": \"6S9\",\n \"label\": \"AI Application config\",\n \"labelPlural\": \"AI Application configs\",\n \"layoutable\": false,\n \"mergeable\": false,\n \"mruEnabled\": false,\n \"name\": \"AIApplicationConfig\",\n \"queryable\": true,\n \"replicateable\": false,\n \"retrieveable\": true,\n \"searchable\": false,\n \"triggerable\": false,\n \"undeletable\": false,\n \"updateable\": true,\n \"urls\": {\n \"rowTemplate\": \"/services/data/v59.0/tooling/sobjects/AIApplicationConfig/{ID}\",\n \"describe\": \"/services/data/v59.0/tooling/sobjects/AIApplicationConfig/describe\",\n \"sobject\": \"/services/data/v59.0/tooling/sobjects/AIApplicationConfig\"\n }\n },\n {\n \"activateable\": false,\n \"associateEntityType\": null,\n \"associateParentEntity\": null,\n \"createable\": true,\n \"custom\": false,\n \"customSetting\": false,\n \"deepCloneable\": false,\n \"deletable\": true,\n \"deprecatedAndHidden\": false,\n \"feedEnabled\": false,\n \"hasSubtypes\": false,\n \"isInterface\": false,\n \"isSubtype\": false,\n \"keyPrefix\": \"0HE\",\n \"label\": \"Entity\",\n \"labelPlural\": \"Entity\",\n \"layoutable\": false,\n \"mergeable\": false,\n \"mruEnabled\": false,\n \"name\": \"AIReplyRecommendationsSettings\",\n \"queryable\": true,\n \"replicateable\": false,\n \"retrieveable\": true,\n \"searchable\": false,\n \"triggerable\": false,\n \"undeletable\": false,\n \"updateable\": true,\n \"urls\": {\n \"rowTemplate\": \"/services/data/v59.0/tooling/sobjects/AIReplyRecommendationsSettings/{ID}\",\n \"describe\": \"/services/data/v59.0/tooling/sobjects/AIReplyRecommendationsSettings/describe\",\n \"sobject\": \"/services/data/v59.0/tooling/sobjects/AIReplyRecommendationsSettings\"\n }\n },\n {\n \"activateable\": false,\n \"associateEntityType\": null,\n \"associateParentEntity\": null,\n \"createable\": false,\n \"custom\": false,\n \"customSetting\": false,\n \"deepCloneable\": false,\n \"deletable\": false,\n \"deprecatedAndHidden\": false,\n \"feedEnabled\": false,\n \"hasSubtypes\": false,\n \"isInterface\": false,\n \"isSubtype\": false,\n \"keyPrefix\": \"0Dx\",\n \"label\": \"Access Control Policy\",\n \"labelPlural\": \"Access Control Policies\",\n \"layoutable\": false,\n \"mergeable\": false,\n \"mruEnabled\": false,\n \"name\": \"AccessControlPolicy\",\n \"queryable\": true,\n \"replicateable\": false,\n \"retrieveable\": true,\n \"searchable\": false,\n \"triggerable\": true,\n \"undeletable\": false,\n \"updateable\": false,\n \"urls\": {\n \"rowTemplate\": \"/services/data/v59.0/tooling/sobjects/AccessControlPolicy/{ID}\",\n \"describe\": \"/services/data/v59.0/tooling/sobjects/AccessControlPolicy/describe\",\n \"sobject\": \"/services/data/v59.0/tooling/sobjects/AccessControlPolicy\"\n }\n },\n {\n \"activateable\": false,\n \"associateEntityType\": null,\n \"associateParentEntity\": null,\n \"createable\": true,\n \"custom\": false,\n \"customSetting\": false,\n \"deepCloneable\": false,\n \"deletable\": true,\n \"deprecatedAndHidden\": false,\n \"feedEnabled\": false,\n \"hasSubtypes\": false,\n \"isInterface\": false,\n \"isSubtype\": false,\n \"keyPrefix\": \"0HE\",\n \"label\": \"Entity\",\n \"labelPlural\": \"Entity\",\n \"layoutable\": false,\n \"mergeable\": false,\n \"mruEnabled\": false,\n \"name\": \"AccountIntelligenceSettings\",\n \"queryable\": true,\n \"replicateable\": false,\n \"retrieveable\": true,\n \"searchable\": false,\n \"triggerable\": false,\n \"undeletable\": false,\n \"updateable\": true,\n \"urls\": {\n \"rowTemplate\": \"/services/data/v59.0/tooling/sobjects/AccountIntelligenceSettings/{ID}\",\n \"describe\": \"/services/data/v59.0/tooling/sobjects/AccountIntelligenceSettings/describe\",\n \"sobject\": \"/services/data/v59.0/tooling/sobjects/AccountIntelligenceSettings\"\n }\n },\n {\n \"activateable\": false,\n \"associateEntityType\": null,\n \"associateParentEntity\": null,\n \"createable\": true,\n \"custom\": false,\n \"customSetting\": false,\n \"deepCloneable\": false,\n \"deletable\": true,\n \"deprecatedAndHidden\": false,\n \"feedEnabled\": false,\n \"hasSubtypes\": false,\n \"isInterface\": false,\n \"isSubtype\": false,\n \"keyPrefix\": \"0HE\",\n \"label\": \"Entity\",\n \"labelPlural\": \"Entity\",\n \"layoutable\": false,\n \"mergeable\": false,\n \"mruEnabled\": false,\n \"name\": \"AccountSettings\",\n \"queryable\": true,\n \"replicateable\": false,\n \"retrieveable\": true,\n \"searchable\": false,\n \"triggerable\": false,\n \"undeletable\": false,\n \"updateable\": true,\n \"urls\": {\n \"rowTemplate\": \"/services/data/v59.0/tooling/sobjects/AccountSettings/{ID}\",\n \"describe\": \"/services/data/v59.0/tooling/sobjects/AccountSettings/describe\",\n \"sobject\": \"/services/data/v59.0/tooling/sobjects/AccountSettings\"\n }\n },\n {\n \"activateable\": false,\n \"associateEntityType\": null,\n \"associateParentEntity\": null,\n \"createable\": true,\n \"custom\": false,\n \"customSetting\": false,\n \"deepCloneable\": false,\n \"deletable\": true,\n \"deprecatedAndHidden\": false,\n \"feedEnabled\": false,\n \"hasSubtypes\": false,\n \"isInterface\": false,\n \"isSubtype\": false,\n \"keyPrefix\": \"11i\",\n \"label\": \"ActionLauncherItemDef\",\n \"labelPlural\": \"ActionLauncherItemDefs\",\n \"layoutable\": false,\n \"mergeable\": false,\n \"mruEnabled\": false,\n \"name\": \"ActionLauncherItemDef\",\n \"queryable\": true,\n \"replicateable\": false,\n \"retrieveable\": true,\n \"searchable\": false,\n \"triggerable\": false,\n \"undeletable\": false,\n \"updateable\": true,\n \"urls\": {\n \"rowTemplate\": \"/services/data/v59.0/tooling/sobjects/ActionLauncherItemDef/{ID}\",\n \"describe\": \"/services/data/v59.0/tooling/sobjects/ActionLauncherItemDef/describe\",\n \"sobject\": \"/services/data/v59.0/tooling/sobjects/ActionLauncherItemDef\"\n }\n },\n {\n \"activateable\": false,\n \"associateEntityType\": null,\n \"associateParentEntity\": null,\n \"createable\": true,\n \"custom\": false,\n \"customSetting\": false,\n \"deepCloneable\": false,\n \"deletable\": true,\n \"deprecatedAndHidden\": false,\n \"feedEnabled\": false,\n \"hasSubtypes\": false,\n \"isInterface\": false,\n \"isSubtype\": false,\n \"keyPrefix\": \"0HE\",\n \"label\": \"Entity\",\n \"labelPlural\": \"Entity\",\n \"layoutable\": false,\n \"mergeable\": false,\n \"mruEnabled\": false,\n \"name\": \"ActionsSettings\",\n \"queryable\": true,\n \"replicateable\": false,\n \"retrieveable\": true,\n \"searchable\": false,\n \"triggerable\": false,\n \"undeletable\": false,\n \"updateable\": true,\n \"urls\": {\n \"rowTemplate\": \"/services/data/v59.0/tooling/sobjects/ActionsSettings/{ID}\",\n \"describe\": \"/services/data/v59.0/tooling/sobjects/ActionsSettings/describe\",\n \"sobject\": \"/services/data/v59.0/tooling/sobjects/ActionsSettings\"\n }\n },\n {\n \"activateable\": false,\n \"associateEntityType\": null,\n \"associateParentEntity\": null,\n \"createable\": true,\n \"custom\": false,\n \"customSetting\": false,\n \"deepCloneable\": false,\n \"deletable\": true,\n \"deprecatedAndHidden\": false,\n \"feedEnabled\": false,\n \"hasSubtypes\": false,\n \"isInterface\": false,\n \"isSubtype\": false,\n \"keyPrefix\": \"0HE\",\n \"label\": \"Entity\",\n \"labelPlural\": \"Entity\",\n \"layoutable\": false,\n \"mergeable\": false,\n \"mruEnabled\": false,\n \"name\": \"ActivitiesSettings\",\n \"queryable\": true,\n \"replicateable\": false,\n \"retrieveable\": true,\n \"searchable\": false,\n \"triggerable\": false,\n \"undeletable\": false,\n \"updateable\": true,\n \"urls\": {\n \"rowTemplate\": \"/services/data/v59.0/tooling/sobjects/ActivitiesSettings/{ID}\",\n \"describe\": \"/services/data/v59.0/tooling/sobjects/ActivitiesSettings/describe\",\n \"sobject\": \"/services/data/v59.0/tooling/sobjects/ActivitiesSettings\"\n }\n }\n ]\n}"
|
|
1645
|
+
}
|
|
1646
|
+
]
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
"name": "Get Tooling Metadata SObject",
|
|
1650
|
+
"request": {
|
|
1651
|
+
"method": "GET",
|
|
1652
|
+
"header": [],
|
|
1653
|
+
"url": {
|
|
1654
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/:SOBJECT_API_NAME",
|
|
1655
|
+
"host": [
|
|
1656
|
+
"{{_endpoint}}"
|
|
1657
|
+
],
|
|
1658
|
+
"path": [
|
|
1659
|
+
"services",
|
|
1660
|
+
"data",
|
|
1661
|
+
"v{{version}}",
|
|
1662
|
+
"tooling",
|
|
1663
|
+
"sobjects",
|
|
1664
|
+
":SOBJECT_API_NAME"
|
|
1665
|
+
],
|
|
1666
|
+
"variable": [
|
|
1667
|
+
{
|
|
1668
|
+
"key": "SOBJECT_API_NAME",
|
|
1669
|
+
"value": ""
|
|
1670
|
+
}
|
|
1671
|
+
]
|
|
1672
|
+
}
|
|
1673
|
+
},
|
|
1674
|
+
"response": [
|
|
1675
|
+
{
|
|
1676
|
+
"name": "Get Tooling Metadata SObject",
|
|
1677
|
+
"originalRequest": {
|
|
1678
|
+
"method": "GET",
|
|
1679
|
+
"header": [],
|
|
1680
|
+
"url": {
|
|
1681
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/:SOBJECT_API_NAME",
|
|
1682
|
+
"host": [
|
|
1683
|
+
"{{_endpoint}}"
|
|
1684
|
+
],
|
|
1685
|
+
"path": [
|
|
1686
|
+
"services",
|
|
1687
|
+
"data",
|
|
1688
|
+
"v{{version}}",
|
|
1689
|
+
"tooling",
|
|
1690
|
+
"sobjects",
|
|
1691
|
+
":SOBJECT_API_NAME"
|
|
1692
|
+
],
|
|
1693
|
+
"variable": [
|
|
1694
|
+
{
|
|
1695
|
+
"key": "SOBJECT_API_NAME",
|
|
1696
|
+
"value": "ApexClass"
|
|
1697
|
+
}
|
|
1698
|
+
]
|
|
1699
|
+
}
|
|
1700
|
+
},
|
|
1701
|
+
"status": "OK",
|
|
1702
|
+
"code": 200,
|
|
1703
|
+
"_postman_previewlanguage": "json",
|
|
1704
|
+
"header": [
|
|
1705
|
+
{
|
|
1706
|
+
"key": "Date",
|
|
1707
|
+
"value": "Mon, 11 Dec 2023 10:36:20 GMT"
|
|
1708
|
+
},
|
|
1709
|
+
{
|
|
1710
|
+
"key": "Strict-Transport-Security",
|
|
1711
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
"key": "X-Content-Type-Options",
|
|
1715
|
+
"value": "nosniff"
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
"key": "X-Robots-Tag",
|
|
1719
|
+
"value": "none"
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
"key": "Cache-Control",
|
|
1723
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
"key": "Sforce-Limit-Info",
|
|
1727
|
+
"value": "api-usage=298/15000"
|
|
1728
|
+
},
|
|
1729
|
+
{
|
|
1730
|
+
"key": "Content-Type",
|
|
1731
|
+
"value": "application/json;charset=UTF-8"
|
|
1732
|
+
},
|
|
1733
|
+
{
|
|
1734
|
+
"key": "Vary",
|
|
1735
|
+
"value": "Accept-Encoding"
|
|
1736
|
+
},
|
|
1737
|
+
{
|
|
1738
|
+
"key": "Content-Encoding",
|
|
1739
|
+
"value": "gzip"
|
|
1740
|
+
},
|
|
1741
|
+
{
|
|
1742
|
+
"key": "Transfer-Encoding",
|
|
1743
|
+
"value": "chunked"
|
|
1744
|
+
}
|
|
1745
|
+
],
|
|
1746
|
+
"cookie": [],
|
|
1747
|
+
"body": "{\n \"objectDescribe\": {\n \"activateable\": false,\n \"associateEntityType\": null,\n \"associateParentEntity\": null,\n \"createable\": true,\n \"custom\": false,\n \"customSetting\": false,\n \"deepCloneable\": false,\n \"deletable\": true,\n \"deprecatedAndHidden\": false,\n \"feedEnabled\": false,\n \"hasSubtypes\": false,\n \"isInterface\": false,\n \"isSubtype\": false,\n \"keyPrefix\": \"01p\",\n \"label\": \"Apex Class\",\n \"labelPlural\": \"Apex Classes\",\n \"layoutable\": true,\n \"mergeable\": false,\n \"mruEnabled\": true,\n \"name\": \"ApexClass\",\n \"queryable\": true,\n \"replicateable\": true,\n \"retrieveable\": true,\n \"searchable\": true,\n \"triggerable\": false,\n \"undeletable\": false,\n \"updateable\": true,\n \"urls\": {\n \"compactLayouts\": \"/services/data/v59.0/tooling/sobjects/ApexClass/describe/compactLayouts\",\n \"rowTemplate\": \"/services/data/v59.0/tooling/sobjects/ApexClass/{ID}\",\n \"describe\": \"/services/data/v59.0/tooling/sobjects/ApexClass/describe\",\n \"layouts\": \"/services/data/v59.0/tooling/sobjects/ApexClass/describe/layouts\",\n \"sobject\": \"/services/data/v59.0/tooling/sobjects/ApexClass\"\n }\n },\n \"recentItems\": []\n}"
|
|
1748
|
+
}
|
|
1749
|
+
]
|
|
1750
|
+
},
|
|
1751
|
+
{
|
|
1752
|
+
"name": "Get Tooling Describe SObject",
|
|
1753
|
+
"request": {
|
|
1754
|
+
"method": "GET",
|
|
1755
|
+
"header": [],
|
|
1756
|
+
"url": {
|
|
1757
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/:SOBJECT_API_NAME/describe",
|
|
1758
|
+
"host": [
|
|
1759
|
+
"{{_endpoint}}"
|
|
1760
|
+
],
|
|
1761
|
+
"path": [
|
|
1762
|
+
"services",
|
|
1763
|
+
"data",
|
|
1764
|
+
"v{{version}}",
|
|
1765
|
+
"tooling",
|
|
1766
|
+
"sobjects",
|
|
1767
|
+
":SOBJECT_API_NAME",
|
|
1768
|
+
"describe"
|
|
1769
|
+
],
|
|
1770
|
+
"variable": [
|
|
1771
|
+
{
|
|
1772
|
+
"key": "SOBJECT_API_NAME",
|
|
1773
|
+
"value": ""
|
|
1774
|
+
}
|
|
1775
|
+
]
|
|
1776
|
+
}
|
|
1777
|
+
},
|
|
1778
|
+
"response": [
|
|
1779
|
+
{
|
|
1780
|
+
"name": "Get Tooling Describe SObject",
|
|
1781
|
+
"originalRequest": {
|
|
1782
|
+
"method": "GET",
|
|
1783
|
+
"header": [],
|
|
1784
|
+
"url": {
|
|
1785
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/:SOBJECT_API_NAME/describe",
|
|
1786
|
+
"host": [
|
|
1787
|
+
"{{_endpoint}}"
|
|
1788
|
+
],
|
|
1789
|
+
"path": [
|
|
1790
|
+
"services",
|
|
1791
|
+
"data",
|
|
1792
|
+
"v{{version}}",
|
|
1793
|
+
"tooling",
|
|
1794
|
+
"sobjects",
|
|
1795
|
+
":SOBJECT_API_NAME",
|
|
1796
|
+
"describe"
|
|
1797
|
+
],
|
|
1798
|
+
"variable": [
|
|
1799
|
+
{
|
|
1800
|
+
"key": "SOBJECT_API_NAME",
|
|
1801
|
+
"value": "ApexClass"
|
|
1802
|
+
}
|
|
1803
|
+
]
|
|
1804
|
+
}
|
|
1805
|
+
},
|
|
1806
|
+
"status": "OK",
|
|
1807
|
+
"code": 200,
|
|
1808
|
+
"_postman_previewlanguage": "json",
|
|
1809
|
+
"header": [
|
|
1810
|
+
{
|
|
1811
|
+
"key": "Date",
|
|
1812
|
+
"value": "Mon, 11 Dec 2023 10:36:38 GMT"
|
|
1813
|
+
},
|
|
1814
|
+
{
|
|
1815
|
+
"key": "Strict-Transport-Security",
|
|
1816
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
1817
|
+
},
|
|
1818
|
+
{
|
|
1819
|
+
"key": "X-Content-Type-Options",
|
|
1820
|
+
"value": "nosniff"
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
"key": "X-Robots-Tag",
|
|
1824
|
+
"value": "none"
|
|
1825
|
+
},
|
|
1826
|
+
{
|
|
1827
|
+
"key": "Cache-Control",
|
|
1828
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
1829
|
+
},
|
|
1830
|
+
{
|
|
1831
|
+
"key": "Sforce-Limit-Info",
|
|
1832
|
+
"value": "api-usage=300/15000"
|
|
1833
|
+
},
|
|
1834
|
+
{
|
|
1835
|
+
"key": "ETag",
|
|
1836
|
+
"value": "\"df3a089a--gzip\""
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
"key": "Last-Modified",
|
|
1840
|
+
"value": "Mon, 11 Dec 2023 09:11:58 GMT"
|
|
1841
|
+
},
|
|
1842
|
+
{
|
|
1843
|
+
"key": "Content-Type",
|
|
1844
|
+
"value": "application/json;charset=UTF-8"
|
|
1845
|
+
},
|
|
1846
|
+
{
|
|
1847
|
+
"key": "Vary",
|
|
1848
|
+
"value": "Accept-Encoding"
|
|
1849
|
+
},
|
|
1850
|
+
{
|
|
1851
|
+
"key": "Content-Encoding",
|
|
1852
|
+
"value": "gzip"
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
"key": "Transfer-Encoding",
|
|
1856
|
+
"value": "chunked"
|
|
1857
|
+
}
|
|
1858
|
+
],
|
|
1859
|
+
"cookie": [],
|
|
1860
|
+
"body": "{\n \"actionOverrides\": [],\n \"activateable\": false,\n \"associateEntityType\": null,\n \"associateParentEntity\": null,\n \"childRelationships\": [\n {\n \"cascadeDelete\": true,\n \"childSObject\": \"ApexClassMember\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ContentEntityId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": true,\n \"childSObject\": \"ApexCodeCoverage\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ApexClassOrTriggerId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": true,\n \"childSObject\": \"ApexCodeCoverage\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ApexTestClassId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": true,\n \"childSObject\": \"ApexCodeCoverageAggregate\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ApexClassOrTriggerId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": true,\n \"childSObject\": \"ApexExecutionOverlayAction\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ExecutableEntityId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": false,\n \"childSObject\": \"ApexTestQueueItem\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ApexClassId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": false,\n \"childSObject\": \"ApexTestResult\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ApexClassId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": false,\n \"childSObject\": \"AsyncApexJob\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ApexClassId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": false,\n \"childSObject\": \"ConnectedApplication\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ConnAppPluginClassId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": true,\n \"childSObject\": \"ExternalDataSource\",\n \"deprecatedAndHidden\": false,\n \"field\": \"Type\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": true,\n \"childSObject\": \"FlowTestCoverage\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ApexTestClassId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": false,\n \"childSObject\": \"MetadataContainerMember\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ContentEntityId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": true,\n \"childSObject\": \"Package2Member\",\n \"deprecatedAndHidden\": false,\n \"field\": \"SubjectId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": false,\n \"childSObject\": \"PaymentGatewayProvider\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ApexAdapterId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": false,\n \"childSObject\": \"SandboxInfo\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ApexClassId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": false,\n \"childSObject\": \"SandboxProcess\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ApexClassId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": true,\n \"childSObject\": \"TestSuiteMembership\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ApexClassId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": true,\n \"childSObject\": \"TraceFlag\",\n \"deprecatedAndHidden\": false,\n \"field\": \"TracedEntityId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": false\n },\n {\n \"cascadeDelete\": false,\n \"childSObject\": \"TransactionSecurityPolicy\",\n \"deprecatedAndHidden\": false,\n \"field\": \"ApexPolicyId\",\n \"junctionIdListNames\": [],\n \"junctionReferenceTo\": [],\n \"relationshipName\": null,\n \"restrictedDelete\": true\n }\n ],\n \"compactLayoutable\": true,\n \"createable\": true,\n \"custom\": false,\n \"customSetting\": false,\n \"deepCloneable\": false,\n \"defaultImplementation\": null,\n \"deletable\": true,\n \"deprecatedAndHidden\": false,\n \"extendedBy\": null,\n \"extendsInterfaces\": null,\n \"feedEnabled\": false,\n \"fields\": [\n {\n \"aggregatable\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 18,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": false,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": true,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": true,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": true,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": true,\n \"inlineHelpText\": null,\n \"label\": \"Class ID\",\n \"length\": 18,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"Id\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": false,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"tns:ID\",\n \"sortable\": true,\n \"type\": \"id\",\n \"unique\": false,\n \"updateable\": false,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 45,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": false,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": false,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": true,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": true,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Namespace Prefix\",\n \"length\": 15,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"NamespacePrefix\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": true,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"xsd:string\",\n \"sortable\": true,\n \"type\": \"string\",\n \"unique\": false,\n \"updateable\": false,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 765,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": true,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": false,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": true,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": true,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": true,\n \"inlineHelpText\": null,\n \"label\": \"Name\",\n \"length\": 255,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"Name\",\n \"nameField\": true,\n \"namePointing\": false,\n \"nillable\": false,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"xsd:string\",\n \"sortable\": true,\n \"type\": \"string\",\n \"unique\": false,\n \"updateable\": true,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 0,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": true,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": false,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": true,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": false,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Api Version\",\n \"length\": 0,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"ApiVersion\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": false,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 18,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 1,\n \"searchPrefilterable\": false,\n \"soapType\": \"xsd:double\",\n \"sortable\": true,\n \"type\": \"double\",\n \"unique\": false,\n \"updateable\": true,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 120,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": true,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": false,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": true,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": true,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Status\",\n \"length\": 40,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"Status\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": false,\n \"permissionable\": false,\n \"picklistValues\": [\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Inactive\",\n \"validFor\": null,\n \"value\": \"Inactive\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Active\",\n \"validFor\": null,\n \"value\": \"Active\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Deleted\",\n \"validFor\": null,\n \"value\": \"Deleted\"\n }\n ],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": true,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"xsd:string\",\n \"sortable\": true,\n \"type\": \"picklist\",\n \"unique\": false,\n \"updateable\": true,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": false,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 0,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": true,\n \"custom\": false,\n \"defaultValue\": false,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": true,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": true,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": true,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Is Valid\",\n \"length\": 0,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"IsValid\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": false,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"xsd:boolean\",\n \"sortable\": true,\n \"type\": \"boolean\",\n \"unique\": false,\n \"updateable\": true,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 0,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": true,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": true,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": true,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": false,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Body CRC\",\n \"length\": 0,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"BodyCrc\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": true,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 18,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"xsd:double\",\n \"sortable\": true,\n \"type\": \"double\",\n \"unique\": false,\n \"updateable\": true,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": false,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 3000000,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": true,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": false,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": \"plaintextarea\",\n \"filterable\": false,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": false,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Body\",\n \"length\": 1000000,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"Body\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": true,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"xsd:string\",\n \"sortable\": false,\n \"type\": \"textarea\",\n \"unique\": false,\n \"updateable\": true,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 0,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": true,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": false,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 9,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": true,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": true,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Size Without Comments\",\n \"length\": 0,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"LengthWithoutComments\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": false,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"xsd:int\",\n \"sortable\": true,\n \"type\": \"int\",\n \"unique\": false,\n \"updateable\": true,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 0,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": false,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": true,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": true,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": false,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Created Date\",\n \"length\": 0,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"CreatedDate\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": false,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"xsd:dateTime\",\n \"sortable\": true,\n \"type\": \"datetime\",\n \"unique\": false,\n \"updateable\": false,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 18,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": false,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": true,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": true,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": true,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Created By ID\",\n \"length\": 18,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"CreatedById\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": false,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [\n \"User\"\n ],\n \"relationshipName\": \"CreatedBy\",\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"tns:ID\",\n \"sortable\": true,\n \"type\": \"reference\",\n \"unique\": false,\n \"updateable\": false,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 0,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": false,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": true,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": true,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": false,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Last Modified Date\",\n \"length\": 0,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"LastModifiedDate\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": false,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"xsd:dateTime\",\n \"sortable\": true,\n \"type\": \"datetime\",\n \"unique\": false,\n \"updateable\": false,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 18,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": false,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": true,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": true,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": true,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Last Modified By ID\",\n \"length\": 18,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"LastModifiedById\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": false,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [\n \"User\"\n ],\n \"relationshipName\": \"LastModifiedBy\",\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"tns:ID\",\n \"sortable\": true,\n \"type\": \"reference\",\n \"unique\": false,\n \"updateable\": false,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 0,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": false,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": true,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": true,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": false,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"System Modstamp\",\n \"length\": 0,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"SystemModstamp\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": false,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"xsd:dateTime\",\n \"sortable\": true,\n \"type\": \"datetime\",\n \"unique\": false,\n \"updateable\": false,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 120,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": false,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": false,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": true,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": true,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Manageable State\",\n \"length\": 40,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"ManageableState\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": true,\n \"permissionable\": false,\n \"picklistValues\": [\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Managed-Released\",\n \"validFor\": null,\n \"value\": \"released\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Managed-Proposed-Deleted\",\n \"validFor\": null,\n \"value\": \"deleted\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Managed-Proposed-Deprecated\",\n \"validFor\": null,\n \"value\": \"deprecated\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Managed-Installed\",\n \"validFor\": null,\n \"value\": \"installed\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Managed-Beta\",\n \"validFor\": null,\n \"value\": \"beta\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Unmanaged\",\n \"validFor\": null,\n \"value\": \"unmanaged\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"SecondGen-Installed-Editable\",\n \"validFor\": null,\n \"value\": \"installedEditable\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"SecondGen-Installed-Deprecated\",\n \"validFor\": null,\n \"value\": \"deprecatedEditable\"\n }\n ],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": true,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"xsd:string\",\n \"sortable\": true,\n \"type\": \"picklist\",\n \"unique\": false,\n \"updateable\": false,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": false,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 0,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": false,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": false,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": false,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": false,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Symbol Table\",\n \"length\": 0,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"SymbolTable\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": true,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"urn:SymbolTable\",\n \"sortable\": false,\n \"type\": \"complexvalue\",\n \"unique\": false,\n \"updateable\": false,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": false,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 0,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": true,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": false,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": false,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": false,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Metadata\",\n \"length\": 0,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"Metadata\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": true,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"ApexClass\",\n \"sortable\": false,\n \"type\": \"complexvalue\",\n \"unique\": false,\n \"updateable\": true,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 765,\n \"calculated\": false,\n \"calculatedFormula\": null,\n \"cascadeDelete\": false,\n \"caseSensitive\": false,\n \"compoundFieldName\": null,\n \"controllerName\": null,\n \"createable\": false,\n \"custom\": false,\n \"defaultValue\": null,\n \"defaultValueFormula\": null,\n \"defaultedOnCreate\": false,\n \"dependentPicklist\": false,\n \"deprecatedAndHidden\": false,\n \"digits\": 0,\n \"displayLocationInDecimal\": false,\n \"encrypted\": false,\n \"externalId\": false,\n \"extraTypeInfo\": null,\n \"filterable\": false,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": true,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Full name\",\n \"length\": 255,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"FullName\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": true,\n \"permissionable\": false,\n \"picklistValues\": [],\n \"polymorphicForeignKey\": false,\n \"precision\": 0,\n \"queryByDistance\": false,\n \"referenceTargetField\": null,\n \"referenceTo\": [],\n \"relationshipName\": null,\n \"relationshipOrder\": null,\n \"restrictedDelete\": false,\n \"restrictedPicklist\": false,\n \"scale\": 0,\n \"searchPrefilterable\": false,\n \"soapType\": \"xsd:string\",\n \"sortable\": false,\n \"type\": \"string\",\n \"unique\": false,\n \"updateable\": false,\n \"writeRequiresMasterRead\": false\n }\n ],\n \"hasSubtypes\": false,\n \"implementedBy\": null,\n \"implementsInterfaces\": null,\n \"isInterface\": false,\n \"isSubtype\": false,\n \"keyPrefix\": \"01p\",\n \"label\": \"Apex Class\",\n \"labelPlural\": \"Apex Classes\",\n \"layoutable\": true,\n \"listviewable\": null,\n \"lookupLayoutable\": null,\n \"mergeable\": false,\n \"mruEnabled\": true,\n \"name\": \"ApexClass\",\n \"namedLayoutInfos\": [],\n \"networkScopeFieldName\": null,\n \"queryable\": true,\n \"recordTypeInfos\": [],\n \"replicateable\": true,\n \"retrieveable\": true,\n \"searchLayoutable\": false,\n \"searchable\": true,\n \"sobjectDescribeOption\": \"FULL\",\n \"supportedScopes\": [\n {\n \"label\": \"All apex classes\",\n \"name\": \"everything\"\n }\n ],\n \"triggerable\": false,\n \"undeletable\": false,\n \"updateable\": true,\n \"urls\": {\n \"compactLayouts\": \"/services/data/v59.0/tooling/sobjects/ApexClass/describe/compactLayouts\",\n \"rowTemplate\": \"/services/data/v59.0/tooling/sobjects/ApexClass/{ID}\",\n \"uiDetailTemplate\": \"https://pozil-dev-ed.my.salesforce.com/{ID}\",\n \"uiEditTemplate\": \"https://pozil-dev-ed.my.salesforce.com/{ID}/e\",\n \"describe\": \"/services/data/v59.0/tooling/sobjects/ApexClass/describe\",\n \"uiNewRecord\": \"https://pozil-dev-ed.my.salesforce.com/01p/e\",\n \"layouts\": \"/services/data/v59.0/tooling/sobjects/ApexClass/describe/layouts\",\n \"sobject\": \"/services/data/v59.0/tooling/sobjects/ApexClass\"\n }\n}"
|
|
1861
|
+
}
|
|
1862
|
+
]
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
"name": "Post Tooling SObject",
|
|
1866
|
+
"request": {
|
|
1867
|
+
"method": "POST",
|
|
1868
|
+
"header": [
|
|
1869
|
+
{
|
|
1870
|
+
"key": "Content-Type",
|
|
1871
|
+
"name": "Content-Type",
|
|
1872
|
+
"value": "application/json",
|
|
1873
|
+
"type": "text"
|
|
1874
|
+
}
|
|
1875
|
+
],
|
|
1876
|
+
"body": {
|
|
1877
|
+
"mode": "raw",
|
|
1878
|
+
"raw": "{\n\t\"Name\":\"test\"\n}",
|
|
1879
|
+
"options": {
|
|
1880
|
+
"raw": {
|
|
1881
|
+
"language": "json"
|
|
1882
|
+
}
|
|
1883
|
+
}
|
|
1884
|
+
},
|
|
1885
|
+
"url": {
|
|
1886
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/:SOBJECT_API_NAME",
|
|
1887
|
+
"host": [
|
|
1888
|
+
"{{_endpoint}}"
|
|
1889
|
+
],
|
|
1890
|
+
"path": [
|
|
1891
|
+
"services",
|
|
1892
|
+
"data",
|
|
1893
|
+
"v{{version}}",
|
|
1894
|
+
"tooling",
|
|
1895
|
+
"sobjects",
|
|
1896
|
+
":SOBJECT_API_NAME"
|
|
1897
|
+
],
|
|
1898
|
+
"variable": [
|
|
1899
|
+
{
|
|
1900
|
+
"key": "SOBJECT_API_NAME",
|
|
1901
|
+
"value": ""
|
|
1902
|
+
}
|
|
1903
|
+
]
|
|
1904
|
+
}
|
|
1905
|
+
},
|
|
1906
|
+
"response": []
|
|
1907
|
+
},
|
|
1908
|
+
{
|
|
1909
|
+
"name": "Access Records",
|
|
1910
|
+
"request": {
|
|
1911
|
+
"method": "GET",
|
|
1912
|
+
"header": [],
|
|
1913
|
+
"url": {
|
|
1914
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/:SOBJECT_API_NAME/:RECORD_ID",
|
|
1915
|
+
"host": [
|
|
1916
|
+
"{{_endpoint}}"
|
|
1917
|
+
],
|
|
1918
|
+
"path": [
|
|
1919
|
+
"services",
|
|
1920
|
+
"data",
|
|
1921
|
+
"v{{version}}",
|
|
1922
|
+
"tooling",
|
|
1923
|
+
"sobjects",
|
|
1924
|
+
":SOBJECT_API_NAME",
|
|
1925
|
+
":RECORD_ID"
|
|
1926
|
+
],
|
|
1927
|
+
"variable": [
|
|
1928
|
+
{
|
|
1929
|
+
"key": "SOBJECT_API_NAME",
|
|
1930
|
+
"value": ""
|
|
1931
|
+
},
|
|
1932
|
+
{
|
|
1933
|
+
"key": "RECORD_ID",
|
|
1934
|
+
"value": ""
|
|
1935
|
+
}
|
|
1936
|
+
]
|
|
1937
|
+
}
|
|
1938
|
+
},
|
|
1939
|
+
"response": [
|
|
1940
|
+
{
|
|
1941
|
+
"name": "Access Records",
|
|
1942
|
+
"originalRequest": {
|
|
1943
|
+
"method": "GET",
|
|
1944
|
+
"header": [],
|
|
1945
|
+
"url": {
|
|
1946
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/:SOBJECT_API_NAME/:RECORD_ID",
|
|
1947
|
+
"host": [
|
|
1948
|
+
"{{_endpoint}}"
|
|
1949
|
+
],
|
|
1950
|
+
"path": [
|
|
1951
|
+
"services",
|
|
1952
|
+
"data",
|
|
1953
|
+
"v{{version}}",
|
|
1954
|
+
"tooling",
|
|
1955
|
+
"sobjects",
|
|
1956
|
+
":SOBJECT_API_NAME",
|
|
1957
|
+
":RECORD_ID"
|
|
1958
|
+
],
|
|
1959
|
+
"variable": [
|
|
1960
|
+
{
|
|
1961
|
+
"key": "SOBJECT_API_NAME",
|
|
1962
|
+
"value": "ApexClass"
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
"key": "RECORD_ID",
|
|
1966
|
+
"value": "01p4H00000A4kfqQAB"
|
|
1967
|
+
}
|
|
1968
|
+
]
|
|
1969
|
+
}
|
|
1970
|
+
},
|
|
1971
|
+
"status": "OK",
|
|
1972
|
+
"code": 200,
|
|
1973
|
+
"_postman_previewlanguage": "json",
|
|
1974
|
+
"header": [
|
|
1975
|
+
{
|
|
1976
|
+
"key": "Date",
|
|
1977
|
+
"value": "Mon, 11 Dec 2023 10:38:26 GMT"
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"key": "Strict-Transport-Security",
|
|
1981
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
1982
|
+
},
|
|
1983
|
+
{
|
|
1984
|
+
"key": "X-Content-Type-Options",
|
|
1985
|
+
"value": "nosniff"
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
"key": "X-Robots-Tag",
|
|
1989
|
+
"value": "none"
|
|
1990
|
+
},
|
|
1991
|
+
{
|
|
1992
|
+
"key": "Cache-Control",
|
|
1993
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
"key": "Sforce-Limit-Info",
|
|
1997
|
+
"value": "api-usage=308/15000"
|
|
1998
|
+
},
|
|
1999
|
+
{
|
|
2000
|
+
"key": "Last-Modified",
|
|
2001
|
+
"value": "Sun, 26 Nov 2023 14:10:11 GMT"
|
|
2002
|
+
},
|
|
2003
|
+
{
|
|
2004
|
+
"key": "Content-Type",
|
|
2005
|
+
"value": "application/json;charset=UTF-8"
|
|
2006
|
+
},
|
|
2007
|
+
{
|
|
2008
|
+
"key": "Vary",
|
|
2009
|
+
"value": "Accept-Encoding"
|
|
2010
|
+
},
|
|
2011
|
+
{
|
|
2012
|
+
"key": "Content-Encoding",
|
|
2013
|
+
"value": "gzip"
|
|
2014
|
+
},
|
|
2015
|
+
{
|
|
2016
|
+
"key": "Transfer-Encoding",
|
|
2017
|
+
"value": "chunked"
|
|
2018
|
+
}
|
|
2019
|
+
],
|
|
2020
|
+
"cookie": [],
|
|
2021
|
+
"body": "{\n \"attributes\": {\n \"type\": \"ApexClass\",\n \"url\": \"/services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A4kfqQAB\"\n },\n \"Id\": \"01p4H00000A4kfqQAB\",\n \"NamespacePrefix\": \"smon\",\n \"Name\": \"GenericEventPostMock\",\n \"ApiVersion\": 59,\n \"Status\": \"Active\",\n \"IsValid\": false,\n \"BodyCrc\": -1,\n \"Body\": \"/*\\nThis file is generated and isn't the actual source code for this\\nmanaged global class.\\nThis read-only file shows the class's global constructors,\\nmethods, variables, and properties.\\nTo enable code to compile, all methods return null.\\n*/\\nglobal class GenericEventPostMock implements System.HttpCalloutMock {\\n global GenericEventPostMock(Integer statusCode) {\\n\\n }\\n global System.HttpResponse respond(System.HttpRequest req) {\\n return null;\\n }\\n}\\n\",\n \"LengthWithoutComments\": -1,\n \"CreatedDate\": \"2023-11-20T08:03:40.000+0000\",\n \"CreatedById\": \"00558000000yFyDAAU\",\n \"LastModifiedDate\": \"2023-11-20T08:03:40.000+0000\",\n \"LastModifiedById\": \"00558000000yFyDAAU\",\n \"SystemModstamp\": \"2023-11-26T14:10:11.000+0000\",\n \"ManageableState\": \"installed\",\n \"SymbolTable\": {\n \"constructors\": [\n {\n \"annotations\": [],\n \"location\": {\n \"column\": 12,\n \"line\": 5\n },\n \"modifiers\": [\n \"global\"\n ],\n \"name\": \"GenericEventPostMock\",\n \"parameters\": [\n {\n \"name\": \"statusCode\",\n \"type\": \"Integer\"\n }\n ],\n \"references\": [],\n \"type\": null\n }\n ],\n \"externalReferences\": [],\n \"id\": \"smon.GenericEventPostMock\",\n \"innerClasses\": [],\n \"interfaces\": [\n \"System.HttpCalloutMock\"\n ],\n \"key\": \"smon.GenericEventPostMock\",\n \"methods\": [\n {\n \"annotations\": [],\n \"location\": {\n \"column\": 25,\n \"line\": 9\n },\n \"modifiers\": [\n \"global\"\n ],\n \"name\": \"respond\",\n \"parameters\": [\n {\n \"name\": \"req\",\n \"type\": \"System.HttpRequest\"\n }\n ],\n \"references\": [],\n \"returnType\": \"System.HttpResponse\",\n \"type\": null\n }\n ],\n \"name\": \"GenericEventPostMock\",\n \"namespace\": \"smon\",\n \"parentClass\": \"\",\n \"properties\": [],\n \"tableDeclaration\": {\n \"annotations\": [\n {\n \"name\": \"IsTest\"\n }\n ],\n \"location\": {\n \"column\": 14,\n \"line\": 2\n },\n \"modifiers\": [\n \"testMethod\",\n \"global\"\n ],\n \"name\": \"GenericEventPostMock\",\n \"references\": [],\n \"type\": \"smon.GenericEventPostMock\"\n },\n \"variables\": []\n },\n \"Metadata\": {\n \"apiVersion\": 59,\n \"packageVersions\": [],\n \"status\": \"Active\",\n \"urls\": null\n },\n \"FullName\": \"smon__GenericEventPostMock\"\n}"
|
|
2022
|
+
}
|
|
2023
|
+
]
|
|
2024
|
+
}
|
|
2025
|
+
]
|
|
2026
|
+
}
|