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,2682 @@
|
|
|
1
|
+
{
|
|
2
|
+
"info": {
|
|
3
|
+
"_postman_id": "67cb9baa-e0da-4986-957e-88d8734647e2",
|
|
4
|
+
"name": "Salesforce Platform APIs - event-platform",
|
|
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": "Create channel",
|
|
165
|
+
"request": {
|
|
166
|
+
"method": "POST",
|
|
167
|
+
"header": [],
|
|
168
|
+
"body": {
|
|
169
|
+
"mode": "raw",
|
|
170
|
+
"raw": "{\n \"FullName\": \"Account_Channel__chn\",\n \"Metadata\": {\n \"channelType\": \"data\",\n \"label\": \"Account Channel\"\n }\n}",
|
|
171
|
+
"options": {
|
|
172
|
+
"raw": {
|
|
173
|
+
"language": "json"
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"url": {
|
|
178
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannel",
|
|
179
|
+
"host": [
|
|
180
|
+
"{{_endpoint}}"
|
|
181
|
+
],
|
|
182
|
+
"path": [
|
|
183
|
+
"services",
|
|
184
|
+
"data",
|
|
185
|
+
"v{{version}}",
|
|
186
|
+
"tooling",
|
|
187
|
+
"sobjects",
|
|
188
|
+
"PlatformEventChannel"
|
|
189
|
+
]
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
"response": []
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"name": "Update channel",
|
|
196
|
+
"protocolProfileBehavior": {
|
|
197
|
+
"strictSSL": false
|
|
198
|
+
},
|
|
199
|
+
"request": {
|
|
200
|
+
"method": "PATCH",
|
|
201
|
+
"header": [],
|
|
202
|
+
"body": {
|
|
203
|
+
"mode": "raw",
|
|
204
|
+
"raw": "{\n \"FullName\": \"Account_Channel__chn\",\n \"Metadata\": {\n \"channelType\": \"data\",\n \"label\": \"Account Channel 2\",\n \"urls\": null\n }\n}",
|
|
205
|
+
"options": {
|
|
206
|
+
"raw": {
|
|
207
|
+
"language": "json"
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"url": {
|
|
212
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannel/:PLATFORM_EVENT_CHANNEL_ID",
|
|
213
|
+
"host": [
|
|
214
|
+
"{{_endpoint}}"
|
|
215
|
+
],
|
|
216
|
+
"path": [
|
|
217
|
+
"services",
|
|
218
|
+
"data",
|
|
219
|
+
"v{{version}}",
|
|
220
|
+
"tooling",
|
|
221
|
+
"sobjects",
|
|
222
|
+
"PlatformEventChannel",
|
|
223
|
+
":PLATFORM_EVENT_CHANNEL_ID"
|
|
224
|
+
],
|
|
225
|
+
"variable": [
|
|
226
|
+
{
|
|
227
|
+
"key": "PLATFORM_EVENT_CHANNEL_ID",
|
|
228
|
+
"value": "0YLRM0000004DlP4AU"
|
|
229
|
+
}
|
|
230
|
+
]
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
"response": []
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"name": "Add enriched fields to channel member",
|
|
237
|
+
"protocolProfileBehavior": {
|
|
238
|
+
"strictSSL": false
|
|
239
|
+
},
|
|
240
|
+
"request": {
|
|
241
|
+
"method": "PATCH",
|
|
242
|
+
"header": [],
|
|
243
|
+
"body": {
|
|
244
|
+
"mode": "raw",
|
|
245
|
+
"raw": "{\n \"FullName\": \"Account_Channel_chn_AccountChangeEvent\",\n \"Metadata\": {\n \"enrichedFields\": [\n {\n \"name\": \"External_Account_ID__c\"\n }\n ],\n \"eventChannel\": \"Account_Channel__chn\",\n \"selectedEntity\": \"AccountChangeEvent\"\n }\n}",
|
|
246
|
+
"options": {
|
|
247
|
+
"raw": {
|
|
248
|
+
"language": "json"
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"url": {
|
|
253
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannelMember/:PLATFORM_EVENT_CHANNEL_MEMBER_ID",
|
|
254
|
+
"host": [
|
|
255
|
+
"{{_endpoint}}"
|
|
256
|
+
],
|
|
257
|
+
"path": [
|
|
258
|
+
"services",
|
|
259
|
+
"data",
|
|
260
|
+
"v{{version}}",
|
|
261
|
+
"tooling",
|
|
262
|
+
"sobjects",
|
|
263
|
+
"PlatformEventChannelMember",
|
|
264
|
+
":PLATFORM_EVENT_CHANNEL_MEMBER_ID"
|
|
265
|
+
],
|
|
266
|
+
"variable": [
|
|
267
|
+
{
|
|
268
|
+
"key": "PLATFORM_EVENT_CHANNEL_MEMBER_ID",
|
|
269
|
+
"value": ""
|
|
270
|
+
}
|
|
271
|
+
]
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
"response": []
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"name": "Create channel member",
|
|
278
|
+
"request": {
|
|
279
|
+
"method": "POST",
|
|
280
|
+
"header": [],
|
|
281
|
+
"body": {
|
|
282
|
+
"mode": "raw",
|
|
283
|
+
"raw": "{\n \"FullName\": \"Account_Channel_chn_AccountChangeEvent\",\n \"Metadata\": {\n \"eventChannel\": \"Account_Channel__chn\",\n \"selectedEntity\": \"AccountChangeEvent\"\n }\n}\n",
|
|
284
|
+
"options": {
|
|
285
|
+
"raw": {
|
|
286
|
+
"language": "json"
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"url": {
|
|
291
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannelMember",
|
|
292
|
+
"host": [
|
|
293
|
+
"{{_endpoint}}"
|
|
294
|
+
],
|
|
295
|
+
"path": [
|
|
296
|
+
"services",
|
|
297
|
+
"data",
|
|
298
|
+
"v{{version}}",
|
|
299
|
+
"tooling",
|
|
300
|
+
"sobjects",
|
|
301
|
+
"PlatformEventChannelMember"
|
|
302
|
+
]
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
"response": []
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"name": "Create channel",
|
|
309
|
+
"protocolProfileBehavior": {
|
|
310
|
+
"strictSSL": false
|
|
311
|
+
},
|
|
312
|
+
"request": {
|
|
313
|
+
"method": "POST",
|
|
314
|
+
"header": [
|
|
315
|
+
{
|
|
316
|
+
"key": "Content-Type",
|
|
317
|
+
"value": "application/json"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"key": "SOAPAction",
|
|
321
|
+
"value": "\"\""
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"key": "Authorization",
|
|
325
|
+
"value": "Bearer {{_accessToken}}"
|
|
326
|
+
}
|
|
327
|
+
],
|
|
328
|
+
"body": {
|
|
329
|
+
"mode": "raw",
|
|
330
|
+
"raw": "{\n \"FullName\": \"Carbon_Comparison_Channel__chn\",\n \"Metadata\": {\n \"channelType\": \"event\",\n \"label\": \"Carbon Comparison Channel\",\n \"urls\": null\n }\n}",
|
|
331
|
+
"options": {
|
|
332
|
+
"raw": {
|
|
333
|
+
"language": "json"
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
"url": {
|
|
338
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannel",
|
|
339
|
+
"host": [
|
|
340
|
+
"{{_endpoint}}"
|
|
341
|
+
],
|
|
342
|
+
"path": [
|
|
343
|
+
"services",
|
|
344
|
+
"data",
|
|
345
|
+
"v{{version}}",
|
|
346
|
+
"tooling",
|
|
347
|
+
"sobjects",
|
|
348
|
+
"PlatformEventChannel"
|
|
349
|
+
]
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"response": []
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"name": "Update channel",
|
|
356
|
+
"protocolProfileBehavior": {
|
|
357
|
+
"strictSSL": false
|
|
358
|
+
},
|
|
359
|
+
"request": {
|
|
360
|
+
"method": "PATCH",
|
|
361
|
+
"header": [],
|
|
362
|
+
"body": {
|
|
363
|
+
"mode": "raw",
|
|
364
|
+
"raw": "{\n \"FullName\": \"Carbon_Comparison_Channel__chn\",\n \"Metadata\": {\n \"channelType\": \"event\",\n \"label\": \"Carbon Comparison Channel 2\",\n \"urls\": null\n }\n}",
|
|
365
|
+
"options": {
|
|
366
|
+
"raw": {
|
|
367
|
+
"language": "json"
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
"url": {
|
|
372
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannel/:PLATFORM_EVENT_CHANNEL_ID",
|
|
373
|
+
"host": [
|
|
374
|
+
"{{_endpoint}}"
|
|
375
|
+
],
|
|
376
|
+
"path": [
|
|
377
|
+
"services",
|
|
378
|
+
"data",
|
|
379
|
+
"v{{version}}",
|
|
380
|
+
"tooling",
|
|
381
|
+
"sobjects",
|
|
382
|
+
"PlatformEventChannel",
|
|
383
|
+
":PLATFORM_EVENT_CHANNEL_ID"
|
|
384
|
+
],
|
|
385
|
+
"variable": [
|
|
386
|
+
{
|
|
387
|
+
"key": "PLATFORM_EVENT_CHANNEL_ID",
|
|
388
|
+
"value": ""
|
|
389
|
+
}
|
|
390
|
+
]
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
"response": []
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"name": "Create channel member",
|
|
397
|
+
"protocolProfileBehavior": {
|
|
398
|
+
"strictSSL": false
|
|
399
|
+
},
|
|
400
|
+
"request": {
|
|
401
|
+
"method": "POST",
|
|
402
|
+
"header": [],
|
|
403
|
+
"body": {
|
|
404
|
+
"mode": "raw",
|
|
405
|
+
"raw": "{\n \"FullName\": \"Carbon_ComparisonChannel_chn_Carbon_Comparison_e\",\n \"Metadata\": {\n \"eventChannel\": \"Carbon_ComparisonChannel__chn\",\n \"selectedEntity\": \"Carbon_Comparison__e\",\n \"urls\": null\n }\n}",
|
|
406
|
+
"options": {
|
|
407
|
+
"raw": {
|
|
408
|
+
"language": "json"
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
},
|
|
412
|
+
"url": {
|
|
413
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannelMember",
|
|
414
|
+
"host": [
|
|
415
|
+
"{{_endpoint}}"
|
|
416
|
+
],
|
|
417
|
+
"path": [
|
|
418
|
+
"services",
|
|
419
|
+
"data",
|
|
420
|
+
"v{{version}}",
|
|
421
|
+
"tooling",
|
|
422
|
+
"sobjects",
|
|
423
|
+
"PlatformEventChannelMember"
|
|
424
|
+
]
|
|
425
|
+
}
|
|
426
|
+
},
|
|
427
|
+
"response": []
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"name": "Add filter expression in channel member",
|
|
431
|
+
"protocolProfileBehavior": {
|
|
432
|
+
"strictSSL": false
|
|
433
|
+
},
|
|
434
|
+
"request": {
|
|
435
|
+
"method": "PATCH",
|
|
436
|
+
"header": [],
|
|
437
|
+
"body": {
|
|
438
|
+
"mode": "raw",
|
|
439
|
+
"raw": "{\n \"FullName\": \"MyChannelMember\",\n \"Metadata\": {\n \"eventChannel\": \"MyChannel__chn\",\n \"filterExpression\": \"Text__c='Some value'\",\n \"selectedEntity\": \"Custom_Event__e\",\n \"urls\": null\n }\n}",
|
|
440
|
+
"options": {
|
|
441
|
+
"raw": {
|
|
442
|
+
"language": "json"
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
"url": {
|
|
447
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannelMember/:PLATFORM_EVENT_CHANNEL_MEMBER_ID",
|
|
448
|
+
"host": [
|
|
449
|
+
"{{_endpoint}}"
|
|
450
|
+
],
|
|
451
|
+
"path": [
|
|
452
|
+
"services",
|
|
453
|
+
"data",
|
|
454
|
+
"v{{version}}",
|
|
455
|
+
"tooling",
|
|
456
|
+
"sobjects",
|
|
457
|
+
"PlatformEventChannelMember",
|
|
458
|
+
":PLATFORM_EVENT_CHANNEL_MEMBER_ID"
|
|
459
|
+
],
|
|
460
|
+
"variable": [
|
|
461
|
+
{
|
|
462
|
+
"key": "PLATFORM_EVENT_CHANNEL_MEMBER_ID",
|
|
463
|
+
"value": "0v8RM0000004Rr5YAE"
|
|
464
|
+
}
|
|
465
|
+
]
|
|
466
|
+
}
|
|
467
|
+
},
|
|
468
|
+
"response": []
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"name": "List event channels",
|
|
472
|
+
"request": {
|
|
473
|
+
"method": "GET",
|
|
474
|
+
"header": [],
|
|
475
|
+
"url": {
|
|
476
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/query/?q=SELECT Id, DeveloperName, MasterLabel, ChannelType FROM PlatformEventChannel",
|
|
477
|
+
"host": [
|
|
478
|
+
"{{_endpoint}}"
|
|
479
|
+
],
|
|
480
|
+
"path": [
|
|
481
|
+
"services",
|
|
482
|
+
"data",
|
|
483
|
+
"v{{version}}",
|
|
484
|
+
"tooling",
|
|
485
|
+
"query",
|
|
486
|
+
""
|
|
487
|
+
],
|
|
488
|
+
"query": [
|
|
489
|
+
{
|
|
490
|
+
"key": "q",
|
|
491
|
+
"value": "SELECT Id, DeveloperName, MasterLabel, ChannelType FROM PlatformEventChannel"
|
|
492
|
+
}
|
|
493
|
+
]
|
|
494
|
+
}
|
|
495
|
+
},
|
|
496
|
+
"response": [
|
|
497
|
+
{
|
|
498
|
+
"name": "List event channels",
|
|
499
|
+
"originalRequest": {
|
|
500
|
+
"method": "GET",
|
|
501
|
+
"header": [],
|
|
502
|
+
"url": {
|
|
503
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/query/?q=SELECT Id, DeveloperName, MasterLabel, ChannelType FROM PlatformEventChannel",
|
|
504
|
+
"host": [
|
|
505
|
+
"{{_endpoint}}"
|
|
506
|
+
],
|
|
507
|
+
"path": [
|
|
508
|
+
"services",
|
|
509
|
+
"data",
|
|
510
|
+
"v{{version}}",
|
|
511
|
+
"tooling",
|
|
512
|
+
"query",
|
|
513
|
+
""
|
|
514
|
+
],
|
|
515
|
+
"query": [
|
|
516
|
+
{
|
|
517
|
+
"key": "q",
|
|
518
|
+
"value": "SELECT Id, DeveloperName, MasterLabel, ChannelType FROM PlatformEventChannel"
|
|
519
|
+
}
|
|
520
|
+
]
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
"status": "OK",
|
|
524
|
+
"code": 200,
|
|
525
|
+
"_postman_previewlanguage": "json",
|
|
526
|
+
"header": [
|
|
527
|
+
{
|
|
528
|
+
"key": "Date",
|
|
529
|
+
"value": "Mon, 03 Jul 2023 13:15:17 GMT"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"key": "Strict-Transport-Security",
|
|
533
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"key": "X-Content-Type-Options",
|
|
537
|
+
"value": "nosniff"
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"key": "X-Robots-Tag",
|
|
541
|
+
"value": "none"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"key": "Cache-Control",
|
|
545
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"key": "Sforce-Limit-Info",
|
|
549
|
+
"value": "api-usage=7/15000"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"key": "Content-Type",
|
|
553
|
+
"value": "application/json;charset=UTF-8"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"key": "Vary",
|
|
557
|
+
"value": "Accept-Encoding"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"key": "Content-Encoding",
|
|
561
|
+
"value": "gzip"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"key": "Transfer-Encoding",
|
|
565
|
+
"value": "chunked"
|
|
566
|
+
}
|
|
567
|
+
],
|
|
568
|
+
"cookie": [],
|
|
569
|
+
"body": "{\n \"size\": 2,\n \"totalSize\": 2,\n \"done\": true,\n \"queryLocator\": null,\n \"entityTypeName\": \"PlatformEventChannel\",\n \"records\": [\n {\n \"attributes\": {\n \"type\": \"PlatformEventChannel\",\n \"url\": \"/services/data/v58.0/tooling/sobjects/PlatformEventChannel/0YL4H0000004C93WAE\"\n },\n \"Id\": \"0YL4H0000004C93WAE\",\n \"DeveloperName\": \"HREvents\",\n \"MasterLabel\": \"Custom Channel for the HR App\",\n \"ChannelType\": \"data\"\n },\n {\n \"attributes\": {\n \"type\": \"PlatformEventChannel\",\n \"url\": \"/services/data/v58.0/tooling/sobjects/PlatformEventChannel/0YL4H0000004C98WAE\"\n },\n \"Id\": \"0YL4H0000004C98WAE\",\n \"DeveloperName\": \"AdvocateEvents\",\n \"MasterLabel\": \"Custom Channel for the HR App\",\n \"ChannelType\": \"data\"\n }\n ]\n}"
|
|
570
|
+
}
|
|
571
|
+
]
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"name": "Get event channel",
|
|
575
|
+
"protocolProfileBehavior": {
|
|
576
|
+
"strictSSL": false,
|
|
577
|
+
"disableBodyPruning": true
|
|
578
|
+
},
|
|
579
|
+
"request": {
|
|
580
|
+
"method": "GET",
|
|
581
|
+
"header": [],
|
|
582
|
+
"body": {
|
|
583
|
+
"mode": "raw",
|
|
584
|
+
"raw": "",
|
|
585
|
+
"options": {
|
|
586
|
+
"raw": {
|
|
587
|
+
"language": "json"
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
},
|
|
591
|
+
"url": {
|
|
592
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannel/:PLATFORM_EVENT_CHANNEL_ID",
|
|
593
|
+
"host": [
|
|
594
|
+
"{{_endpoint}}"
|
|
595
|
+
],
|
|
596
|
+
"path": [
|
|
597
|
+
"services",
|
|
598
|
+
"data",
|
|
599
|
+
"v{{version}}",
|
|
600
|
+
"tooling",
|
|
601
|
+
"sobjects",
|
|
602
|
+
"PlatformEventChannel",
|
|
603
|
+
":PLATFORM_EVENT_CHANNEL_ID"
|
|
604
|
+
],
|
|
605
|
+
"variable": [
|
|
606
|
+
{
|
|
607
|
+
"key": "PLATFORM_EVENT_CHANNEL_ID",
|
|
608
|
+
"value": "0YL4H0000004C93WAE"
|
|
609
|
+
}
|
|
610
|
+
]
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
"response": [
|
|
614
|
+
{
|
|
615
|
+
"name": "Get event channel",
|
|
616
|
+
"originalRequest": {
|
|
617
|
+
"method": "GET",
|
|
618
|
+
"header": [],
|
|
619
|
+
"body": {
|
|
620
|
+
"mode": "raw",
|
|
621
|
+
"raw": "",
|
|
622
|
+
"options": {
|
|
623
|
+
"raw": {
|
|
624
|
+
"language": "json"
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
"url": {
|
|
629
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannel/:PLATFORM_EVENT_CHANNEL_ID",
|
|
630
|
+
"host": [
|
|
631
|
+
"{{_endpoint}}"
|
|
632
|
+
],
|
|
633
|
+
"path": [
|
|
634
|
+
"services",
|
|
635
|
+
"data",
|
|
636
|
+
"v{{version}}",
|
|
637
|
+
"tooling",
|
|
638
|
+
"sobjects",
|
|
639
|
+
"PlatformEventChannel",
|
|
640
|
+
":PLATFORM_EVENT_CHANNEL_ID"
|
|
641
|
+
],
|
|
642
|
+
"variable": [
|
|
643
|
+
{
|
|
644
|
+
"key": "PLATFORM_EVENT_CHANNEL_ID",
|
|
645
|
+
"value": "0YL4H0000004C93WAE"
|
|
646
|
+
}
|
|
647
|
+
]
|
|
648
|
+
}
|
|
649
|
+
},
|
|
650
|
+
"status": "OK",
|
|
651
|
+
"code": 200,
|
|
652
|
+
"_postman_previewlanguage": "json",
|
|
653
|
+
"header": [
|
|
654
|
+
{
|
|
655
|
+
"key": "Date",
|
|
656
|
+
"value": "Mon, 03 Jul 2023 13:15:59 GMT"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"key": "Strict-Transport-Security",
|
|
660
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"key": "X-Content-Type-Options",
|
|
664
|
+
"value": "nosniff"
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"key": "X-Robots-Tag",
|
|
668
|
+
"value": "none"
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"key": "Cache-Control",
|
|
672
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"key": "Sforce-Limit-Info",
|
|
676
|
+
"value": "api-usage=7/15000"
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"key": "Last-Modified",
|
|
680
|
+
"value": "Mon, 11 Jan 2021 19:33:54 GMT"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"key": "Content-Type",
|
|
684
|
+
"value": "application/json;charset=UTF-8"
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"key": "Vary",
|
|
688
|
+
"value": "Accept-Encoding"
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"key": "Content-Encoding",
|
|
692
|
+
"value": "gzip"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"key": "Transfer-Encoding",
|
|
696
|
+
"value": "chunked"
|
|
697
|
+
}
|
|
698
|
+
],
|
|
699
|
+
"cookie": [],
|
|
700
|
+
"body": "{\n \"attributes\": {\n \"type\": \"PlatformEventChannel\",\n \"url\": \"/services/data/v58.0/tooling/sobjects/PlatformEventChannel/0YL4H0000004C93WAE\"\n },\n \"Id\": \"0YL4H0000004C93WAE\",\n \"IsDeleted\": false,\n \"DeveloperName\": \"HREvents\",\n \"Language\": \"en_US\",\n \"MasterLabel\": \"Custom Channel for the HR App\",\n \"NamespacePrefix\": null,\n \"ManageableState\": \"unmanaged\",\n \"CreatedDate\": \"2021-01-11T19:33:54.000+0000\",\n \"CreatedById\": \"00558000000yFyDAAU\",\n \"LastModifiedDate\": \"2021-01-11T19:33:54.000+0000\",\n \"LastModifiedById\": \"00558000000yFyDAAU\",\n \"SystemModstamp\": \"2021-01-11T19:33:54.000+0000\",\n \"ChannelType\": \"data\",\n \"FullName\": \"HREvents__chn\",\n \"Metadata\": {\n \"channelType\": \"data\",\n \"label\": \"Custom Channel for the HR App\",\n \"urls\": null\n }\n}"
|
|
701
|
+
}
|
|
702
|
+
]
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"name": "Delete event channel",
|
|
706
|
+
"protocolProfileBehavior": {
|
|
707
|
+
"strictSSL": false
|
|
708
|
+
},
|
|
709
|
+
"request": {
|
|
710
|
+
"method": "DELETE",
|
|
711
|
+
"header": [],
|
|
712
|
+
"body": {
|
|
713
|
+
"mode": "raw",
|
|
714
|
+
"raw": "",
|
|
715
|
+
"options": {
|
|
716
|
+
"raw": {
|
|
717
|
+
"language": "json"
|
|
718
|
+
}
|
|
719
|
+
}
|
|
720
|
+
},
|
|
721
|
+
"url": {
|
|
722
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannel/:PLATFORM_EVENT_CHANNEL_ID",
|
|
723
|
+
"host": [
|
|
724
|
+
"{{_endpoint}}"
|
|
725
|
+
],
|
|
726
|
+
"path": [
|
|
727
|
+
"services",
|
|
728
|
+
"data",
|
|
729
|
+
"v{{version}}",
|
|
730
|
+
"tooling",
|
|
731
|
+
"sobjects",
|
|
732
|
+
"PlatformEventChannel",
|
|
733
|
+
":PLATFORM_EVENT_CHANNEL_ID"
|
|
734
|
+
],
|
|
735
|
+
"variable": [
|
|
736
|
+
{
|
|
737
|
+
"key": "PLATFORM_EVENT_CHANNEL_ID",
|
|
738
|
+
"value": ""
|
|
739
|
+
}
|
|
740
|
+
]
|
|
741
|
+
}
|
|
742
|
+
},
|
|
743
|
+
"response": [
|
|
744
|
+
{
|
|
745
|
+
"name": "Delete event channel",
|
|
746
|
+
"originalRequest": {
|
|
747
|
+
"method": "DELETE",
|
|
748
|
+
"header": [],
|
|
749
|
+
"body": {
|
|
750
|
+
"mode": "raw",
|
|
751
|
+
"raw": "",
|
|
752
|
+
"options": {
|
|
753
|
+
"raw": {
|
|
754
|
+
"language": "json"
|
|
755
|
+
}
|
|
756
|
+
}
|
|
757
|
+
},
|
|
758
|
+
"url": {
|
|
759
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannel/:PLATFORM_EVENT_CHANNEL_ID",
|
|
760
|
+
"host": [
|
|
761
|
+
"{{_endpoint}}"
|
|
762
|
+
],
|
|
763
|
+
"path": [
|
|
764
|
+
"services",
|
|
765
|
+
"data",
|
|
766
|
+
"v{{version}}",
|
|
767
|
+
"tooling",
|
|
768
|
+
"sobjects",
|
|
769
|
+
"PlatformEventChannel",
|
|
770
|
+
":PLATFORM_EVENT_CHANNEL_ID"
|
|
771
|
+
],
|
|
772
|
+
"variable": [
|
|
773
|
+
{
|
|
774
|
+
"key": "PLATFORM_EVENT_CHANNEL_ID",
|
|
775
|
+
"value": "0YL4H0000004C98WAE"
|
|
776
|
+
}
|
|
777
|
+
]
|
|
778
|
+
}
|
|
779
|
+
},
|
|
780
|
+
"status": "No Content",
|
|
781
|
+
"code": 204,
|
|
782
|
+
"_postman_previewlanguage": "plain",
|
|
783
|
+
"header": [
|
|
784
|
+
{
|
|
785
|
+
"key": "Date",
|
|
786
|
+
"value": "Wed, 06 Dec 2023 16:56:00 GMT"
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"key": "Strict-Transport-Security",
|
|
790
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"key": "X-Content-Type-Options",
|
|
794
|
+
"value": "nosniff"
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"key": "Content-Security-Policy",
|
|
798
|
+
"value": "upgrade-insecure-requests"
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"key": "X-Robots-Tag",
|
|
802
|
+
"value": "none"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"key": "Cache-Control",
|
|
806
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"key": "Sforce-Limit-Info",
|
|
810
|
+
"value": "api-usage=303/15000"
|
|
811
|
+
}
|
|
812
|
+
],
|
|
813
|
+
"cookie": [],
|
|
814
|
+
"body": null
|
|
815
|
+
}
|
|
816
|
+
]
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"name": "Describe event channel",
|
|
820
|
+
"protocolProfileBehavior": {
|
|
821
|
+
"strictSSL": false,
|
|
822
|
+
"disableBodyPruning": true
|
|
823
|
+
},
|
|
824
|
+
"request": {
|
|
825
|
+
"method": "GET",
|
|
826
|
+
"header": [],
|
|
827
|
+
"body": {
|
|
828
|
+
"mode": "raw",
|
|
829
|
+
"raw": "",
|
|
830
|
+
"options": {
|
|
831
|
+
"raw": {
|
|
832
|
+
"language": "json"
|
|
833
|
+
}
|
|
834
|
+
}
|
|
835
|
+
},
|
|
836
|
+
"url": {
|
|
837
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannel/describe/",
|
|
838
|
+
"host": [
|
|
839
|
+
"{{_endpoint}}"
|
|
840
|
+
],
|
|
841
|
+
"path": [
|
|
842
|
+
"services",
|
|
843
|
+
"data",
|
|
844
|
+
"v{{version}}",
|
|
845
|
+
"tooling",
|
|
846
|
+
"sobjects",
|
|
847
|
+
"PlatformEventChannel",
|
|
848
|
+
"describe",
|
|
849
|
+
""
|
|
850
|
+
]
|
|
851
|
+
}
|
|
852
|
+
},
|
|
853
|
+
"response": [
|
|
854
|
+
{
|
|
855
|
+
"name": "Describe event channel",
|
|
856
|
+
"originalRequest": {
|
|
857
|
+
"method": "GET",
|
|
858
|
+
"header": [],
|
|
859
|
+
"body": {
|
|
860
|
+
"mode": "raw",
|
|
861
|
+
"raw": "",
|
|
862
|
+
"options": {
|
|
863
|
+
"raw": {
|
|
864
|
+
"language": "json"
|
|
865
|
+
}
|
|
866
|
+
}
|
|
867
|
+
},
|
|
868
|
+
"url": {
|
|
869
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannel/describe/",
|
|
870
|
+
"host": [
|
|
871
|
+
"{{_endpoint}}"
|
|
872
|
+
],
|
|
873
|
+
"path": [
|
|
874
|
+
"services",
|
|
875
|
+
"data",
|
|
876
|
+
"v{{version}}",
|
|
877
|
+
"tooling",
|
|
878
|
+
"sobjects",
|
|
879
|
+
"PlatformEventChannel",
|
|
880
|
+
"describe",
|
|
881
|
+
""
|
|
882
|
+
]
|
|
883
|
+
}
|
|
884
|
+
},
|
|
885
|
+
"status": "OK",
|
|
886
|
+
"code": 200,
|
|
887
|
+
"_postman_previewlanguage": "json",
|
|
888
|
+
"header": [
|
|
889
|
+
{
|
|
890
|
+
"key": "Date",
|
|
891
|
+
"value": "Mon, 03 Jul 2023 13:16:20 GMT"
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"key": "Strict-Transport-Security",
|
|
895
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"key": "X-Content-Type-Options",
|
|
899
|
+
"value": "nosniff"
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"key": "X-Robots-Tag",
|
|
903
|
+
"value": "none"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"key": "Cache-Control",
|
|
907
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"key": "Sforce-Limit-Info",
|
|
911
|
+
"value": "api-usage=7/15000"
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
"key": "ETag",
|
|
915
|
+
"value": "\"2aa989f9--gzip\""
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"key": "Last-Modified",
|
|
919
|
+
"value": "Mon, 03 Jul 2023 13:05:05 GMT"
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"key": "Content-Type",
|
|
923
|
+
"value": "application/json;charset=UTF-8"
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"key": "Vary",
|
|
927
|
+
"value": "Accept-Encoding"
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"key": "Content-Encoding",
|
|
931
|
+
"value": "gzip"
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"key": "Transfer-Encoding",
|
|
935
|
+
"value": "chunked"
|
|
936
|
+
}
|
|
937
|
+
],
|
|
938
|
+
"cookie": [],
|
|
939
|
+
"body": "{\n \"actionOverrides\": [],\n \"activateable\": false,\n \"associateEntityType\": null,\n \"associateParentEntity\": null,\n \"childRelationships\": [],\n \"compactLayoutable\": false,\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\": \"Platform Event Channel 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\": 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\": 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\": \"Deleted\",\n \"length\": 0,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"IsDeleted\",\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\": false,\n \"writeRequiresMasterRead\": false\n },\n {\n \"aggregatable\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 240,\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\": \"Name\",\n \"length\": 80,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"DeveloperName\",\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\": 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\": 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\": \"Master Language\",\n \"length\": 40,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"Language\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": true,\n \"permissionable\": false,\n \"picklistValues\": [\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"English\",\n \"validFor\": null,\n \"value\": \"en_US\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"German\",\n \"validFor\": null,\n \"value\": \"de\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Spanish\",\n \"validFor\": null,\n \"value\": \"es\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"French\",\n \"validFor\": null,\n \"value\": \"fr\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Italian\",\n \"validFor\": null,\n \"value\": \"it\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Japanese\",\n \"validFor\": null,\n \"value\": \"ja\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Swedish\",\n \"validFor\": null,\n \"value\": \"sv\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Korean\",\n \"validFor\": null,\n \"value\": \"ko\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Chinese (Traditional)\",\n \"validFor\": null,\n \"value\": \"zh_TW\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Chinese (Simplified)\",\n \"validFor\": null,\n \"value\": \"zh_CN\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Portuguese (Brazil)\",\n \"validFor\": null,\n \"value\": \"pt_BR\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Dutch\",\n \"validFor\": null,\n \"value\": \"nl_NL\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Danish\",\n \"validFor\": null,\n \"value\": \"da\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Thai\",\n \"validFor\": null,\n \"value\": \"th\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Finnish\",\n \"validFor\": null,\n \"value\": \"fi\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Russian\",\n \"validFor\": null,\n \"value\": \"ru\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Spanish (Mexico)\",\n \"validFor\": null,\n \"value\": \"es_MX\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": \"Norwegian\",\n \"validFor\": null,\n \"value\": \"no\"\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\": true,\n \"aiPredictionField\": false,\n \"autoNumber\": false,\n \"byteLength\": 240,\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\": \"Label\",\n \"length\": 80,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"MasterLabel\",\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: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\": 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\": 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\": 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\": 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\": true,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": true,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Channel Type\",\n \"length\": 255,\n \"mask\": null,\n \"maskType\": null,\n \"name\": \"ChannelType\",\n \"nameField\": false,\n \"namePointing\": false,\n \"nillable\": false,\n \"permissionable\": false,\n \"picklistValues\": [\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": null,\n \"validFor\": null,\n \"value\": \"event\"\n },\n {\n \"active\": true,\n \"defaultValue\": false,\n \"label\": null,\n \"validFor\": null,\n \"value\": \"data\"\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\": 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\": false,\n \"filteredLookupInfo\": null,\n \"formulaTreatNullNumberAsZero\": false,\n \"groupable\": true,\n \"highScaleNumber\": false,\n \"htmlFormatted\": false,\n \"idLookup\": false,\n \"inlineHelpText\": null,\n \"label\": \"Channel Developer 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 \"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\": \"Object 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\": \"PlatformEventChannel\",\n \"sortable\": false,\n \"type\": \"complexvalue\",\n \"unique\": false,\n \"updateable\": true,\n \"writeRequiresMasterRead\": false\n }\n ],\n \"hasSubtypes\": false,\n \"implementedBy\": null,\n \"implementsInterfaces\": null,\n \"isInterface\": false,\n \"isSubtype\": false,\n \"keyPrefix\": \"0YL\",\n \"label\": \"Platform Event Channel\",\n \"labelPlural\": \"Platform Event Channel\",\n \"layoutable\": false,\n \"listviewable\": null,\n \"lookupLayoutable\": null,\n \"mergeable\": false,\n \"mruEnabled\": false,\n \"name\": \"PlatformEventChannel\",\n \"namedLayoutInfos\": [],\n \"networkScopeFieldName\": null,\n \"queryable\": true,\n \"recordTypeInfos\": [],\n \"replicateable\": false,\n \"retrieveable\": true,\n \"searchLayoutable\": false,\n \"searchable\": false,\n \"sobjectDescribeOption\": \"FULL\",\n \"supportedScopes\": [\n {\n \"label\": \"All platform event channels\",\n \"name\": \"everything\"\n }\n ],\n \"triggerable\": false,\n \"undeletable\": false,\n \"updateable\": true,\n \"urls\": {\n \"rowTemplate\": \"/services/data/v58.0/tooling/sobjects/PlatformEventChannel/{ID}\",\n \"describe\": \"/services/data/v58.0/tooling/sobjects/PlatformEventChannel/describe\",\n \"sobject\": \"/services/data/v58.0/tooling/sobjects/PlatformEventChannel\"\n }\n}"
|
|
940
|
+
}
|
|
941
|
+
]
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"name": "List channel members",
|
|
945
|
+
"protocolProfileBehavior": {
|
|
946
|
+
"strictSSL": false,
|
|
947
|
+
"disableBodyPruning": true
|
|
948
|
+
},
|
|
949
|
+
"request": {
|
|
950
|
+
"method": "GET",
|
|
951
|
+
"header": [],
|
|
952
|
+
"body": {
|
|
953
|
+
"mode": "raw",
|
|
954
|
+
"raw": "",
|
|
955
|
+
"options": {
|
|
956
|
+
"raw": {
|
|
957
|
+
"language": "json"
|
|
958
|
+
}
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
"url": {
|
|
962
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/query/?q=SELECT Id, DeveloperName, EventChannel, FilterExpression, SelectedEntity FROM PlatformEventChannelMember",
|
|
963
|
+
"host": [
|
|
964
|
+
"{{_endpoint}}"
|
|
965
|
+
],
|
|
966
|
+
"path": [
|
|
967
|
+
"services",
|
|
968
|
+
"data",
|
|
969
|
+
"v{{version}}",
|
|
970
|
+
"tooling",
|
|
971
|
+
"query",
|
|
972
|
+
""
|
|
973
|
+
],
|
|
974
|
+
"query": [
|
|
975
|
+
{
|
|
976
|
+
"key": "q",
|
|
977
|
+
"value": "SELECT Id, DeveloperName, EventChannel, FilterExpression, SelectedEntity FROM PlatformEventChannelMember"
|
|
978
|
+
}
|
|
979
|
+
]
|
|
980
|
+
}
|
|
981
|
+
},
|
|
982
|
+
"response": [
|
|
983
|
+
{
|
|
984
|
+
"name": "List channel members",
|
|
985
|
+
"originalRequest": {
|
|
986
|
+
"method": "GET",
|
|
987
|
+
"header": [],
|
|
988
|
+
"body": {
|
|
989
|
+
"mode": "raw",
|
|
990
|
+
"raw": "",
|
|
991
|
+
"options": {
|
|
992
|
+
"raw": {
|
|
993
|
+
"language": "json"
|
|
994
|
+
}
|
|
995
|
+
}
|
|
996
|
+
},
|
|
997
|
+
"url": {
|
|
998
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/query/?q=SELECT Id, DeveloperName, EventChannel, FilterExpression, SelectedEntity FROM PlatformEventChannelMember",
|
|
999
|
+
"host": [
|
|
1000
|
+
"{{_endpoint}}"
|
|
1001
|
+
],
|
|
1002
|
+
"path": [
|
|
1003
|
+
"services",
|
|
1004
|
+
"data",
|
|
1005
|
+
"v{{version}}",
|
|
1006
|
+
"tooling",
|
|
1007
|
+
"query",
|
|
1008
|
+
""
|
|
1009
|
+
],
|
|
1010
|
+
"query": [
|
|
1011
|
+
{
|
|
1012
|
+
"key": "q",
|
|
1013
|
+
"value": "SELECT Id, DeveloperName, EventChannel, FilterExpression, SelectedEntity FROM PlatformEventChannelMember"
|
|
1014
|
+
}
|
|
1015
|
+
]
|
|
1016
|
+
}
|
|
1017
|
+
},
|
|
1018
|
+
"status": "OK",
|
|
1019
|
+
"code": 200,
|
|
1020
|
+
"_postman_previewlanguage": "json",
|
|
1021
|
+
"header": [
|
|
1022
|
+
{
|
|
1023
|
+
"key": "Date",
|
|
1024
|
+
"value": "Mon, 03 Jul 2023 13:16:35 GMT"
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"key": "Strict-Transport-Security",
|
|
1028
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"key": "X-Content-Type-Options",
|
|
1032
|
+
"value": "nosniff"
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"key": "X-Robots-Tag",
|
|
1036
|
+
"value": "none"
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
"key": "Cache-Control",
|
|
1040
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"key": "Sforce-Limit-Info",
|
|
1044
|
+
"value": "api-usage=9/15000"
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"key": "Content-Type",
|
|
1048
|
+
"value": "application/json;charset=UTF-8"
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"key": "Vary",
|
|
1052
|
+
"value": "Accept-Encoding"
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
"key": "Content-Encoding",
|
|
1056
|
+
"value": "gzip"
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
"key": "Transfer-Encoding",
|
|
1060
|
+
"value": "chunked"
|
|
1061
|
+
}
|
|
1062
|
+
],
|
|
1063
|
+
"cookie": [],
|
|
1064
|
+
"body": "{\n \"size\": 4,\n \"totalSize\": 4,\n \"done\": true,\n \"queryLocator\": null,\n \"entityTypeName\": \"PlatformEventChannelMember\",\n \"records\": [\n {\n \"attributes\": {\n \"type\": \"PlatformEventChannelMember\",\n \"url\": \"/services/data/v58.0/tooling/sobjects/PlatformEventChannelMember/0v84H000000PAvIQAW\"\n },\n \"Id\": \"0v84H000000PAvIQAW\",\n \"DeveloperName\": \"ChangeEvents_ContactChangeEvent\",\n \"EventChannel\": \"ChangeEvents\",\n \"FilterExpression\": null,\n \"SelectedEntity\": \"ContactChangeEvent\"\n },\n {\n \"attributes\": {\n \"type\": \"PlatformEventChannelMember\",\n \"url\": \"/services/data/v58.0/tooling/sobjects/PlatformEventChannelMember/0v84H000000XZCjQAO\"\n },\n \"Id\": \"0v84H000000XZCjQAO\",\n \"DeveloperName\": \"ChangeEvents_AccountChangeEvent\",\n \"EventChannel\": \"ChangeEvents\",\n \"FilterExpression\": null,\n \"SelectedEntity\": \"AccountChangeEvent\"\n },\n {\n \"attributes\": {\n \"type\": \"PlatformEventChannelMember\",\n \"url\": \"/services/data/v58.0/tooling/sobjects/PlatformEventChannelMember/0v84H000000fxSfQAI\"\n },\n \"Id\": \"0v84H000000fxSfQAI\",\n \"DeveloperName\": \"HREvents_Employee_ChangeEvent\",\n \"EventChannel\": \"0YL4H0000004C93WAE\",\n \"FilterExpression\": null,\n \"SelectedEntity\": \"Meeting_Note__ChangeEvent\"\n },\n {\n \"attributes\": {\n \"type\": \"PlatformEventChannelMember\",\n \"url\": \"/services/data/v58.0/tooling/sobjects/PlatformEventChannelMember/0v84H000000fxSkQAI\"\n },\n \"Id\": \"0v84H000000fxSkQAI\",\n \"DeveloperName\": \"AdvocateEvents_Employee_ChangeEvent\",\n \"EventChannel\": \"0YL4H0000004C98WAE\",\n \"FilterExpression\": null,\n \"SelectedEntity\": \"Meeting_Note__ChangeEvent\"\n }\n ]\n}"
|
|
1065
|
+
}
|
|
1066
|
+
]
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
"name": "Get channel member",
|
|
1070
|
+
"protocolProfileBehavior": {
|
|
1071
|
+
"strictSSL": false,
|
|
1072
|
+
"disableBodyPruning": true
|
|
1073
|
+
},
|
|
1074
|
+
"request": {
|
|
1075
|
+
"method": "GET",
|
|
1076
|
+
"header": [],
|
|
1077
|
+
"body": {
|
|
1078
|
+
"mode": "raw",
|
|
1079
|
+
"raw": "",
|
|
1080
|
+
"options": {
|
|
1081
|
+
"raw": {
|
|
1082
|
+
"language": "json"
|
|
1083
|
+
}
|
|
1084
|
+
}
|
|
1085
|
+
},
|
|
1086
|
+
"url": {
|
|
1087
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannelMember/:PLATFORM_EVENT_CHANNEL_MEMBER_ID",
|
|
1088
|
+
"host": [
|
|
1089
|
+
"{{_endpoint}}"
|
|
1090
|
+
],
|
|
1091
|
+
"path": [
|
|
1092
|
+
"services",
|
|
1093
|
+
"data",
|
|
1094
|
+
"v{{version}}",
|
|
1095
|
+
"tooling",
|
|
1096
|
+
"sobjects",
|
|
1097
|
+
"PlatformEventChannelMember",
|
|
1098
|
+
":PLATFORM_EVENT_CHANNEL_MEMBER_ID"
|
|
1099
|
+
],
|
|
1100
|
+
"variable": [
|
|
1101
|
+
{
|
|
1102
|
+
"key": "PLATFORM_EVENT_CHANNEL_MEMBER_ID",
|
|
1103
|
+
"value": ""
|
|
1104
|
+
}
|
|
1105
|
+
]
|
|
1106
|
+
}
|
|
1107
|
+
},
|
|
1108
|
+
"response": [
|
|
1109
|
+
{
|
|
1110
|
+
"name": "Get channel member",
|
|
1111
|
+
"originalRequest": {
|
|
1112
|
+
"method": "GET",
|
|
1113
|
+
"header": [],
|
|
1114
|
+
"body": {
|
|
1115
|
+
"mode": "raw",
|
|
1116
|
+
"raw": "",
|
|
1117
|
+
"options": {
|
|
1118
|
+
"raw": {
|
|
1119
|
+
"language": "json"
|
|
1120
|
+
}
|
|
1121
|
+
}
|
|
1122
|
+
},
|
|
1123
|
+
"url": {
|
|
1124
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannelMember/:PLATFORM_EVENT_CHANNEL_MEMBER_ID",
|
|
1125
|
+
"host": [
|
|
1126
|
+
"{{_endpoint}}"
|
|
1127
|
+
],
|
|
1128
|
+
"path": [
|
|
1129
|
+
"services",
|
|
1130
|
+
"data",
|
|
1131
|
+
"v{{version}}",
|
|
1132
|
+
"tooling",
|
|
1133
|
+
"sobjects",
|
|
1134
|
+
"PlatformEventChannelMember",
|
|
1135
|
+
":PLATFORM_EVENT_CHANNEL_MEMBER_ID"
|
|
1136
|
+
],
|
|
1137
|
+
"variable": [
|
|
1138
|
+
{
|
|
1139
|
+
"key": "PLATFORM_EVENT_CHANNEL_MEMBER_ID",
|
|
1140
|
+
"value": "0v84H000000PAvIQAW"
|
|
1141
|
+
}
|
|
1142
|
+
]
|
|
1143
|
+
}
|
|
1144
|
+
},
|
|
1145
|
+
"status": "OK",
|
|
1146
|
+
"code": 200,
|
|
1147
|
+
"_postman_previewlanguage": "json",
|
|
1148
|
+
"header": [
|
|
1149
|
+
{
|
|
1150
|
+
"key": "Date",
|
|
1151
|
+
"value": "Mon, 03 Jul 2023 13:17:20 GMT"
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
"key": "Strict-Transport-Security",
|
|
1155
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"key": "X-Content-Type-Options",
|
|
1159
|
+
"value": "nosniff"
|
|
1160
|
+
},
|
|
1161
|
+
{
|
|
1162
|
+
"key": "X-Robots-Tag",
|
|
1163
|
+
"value": "none"
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"key": "Cache-Control",
|
|
1167
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
"key": "Sforce-Limit-Info",
|
|
1171
|
+
"value": "api-usage=9/15000"
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"key": "Last-Modified",
|
|
1175
|
+
"value": "Fri, 30 Dec 2022 15:10:39 GMT"
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
"key": "Content-Type",
|
|
1179
|
+
"value": "application/json;charset=UTF-8"
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
"key": "Vary",
|
|
1183
|
+
"value": "Accept-Encoding"
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"key": "Content-Encoding",
|
|
1187
|
+
"value": "gzip"
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
"key": "Transfer-Encoding",
|
|
1191
|
+
"value": "chunked"
|
|
1192
|
+
}
|
|
1193
|
+
],
|
|
1194
|
+
"cookie": [],
|
|
1195
|
+
"body": "{\n \"attributes\": {\n \"type\": \"PlatformEventChannelMember\",\n \"url\": \"/services/data/v58.0/tooling/sobjects/PlatformEventChannelMember/0v84H000000PAvIQAW\"\n },\n \"Id\": \"0v84H000000PAvIQAW\",\n \"IsDeleted\": false,\n \"DeveloperName\": \"ChangeEvents_ContactChangeEvent\",\n \"Language\": \"en_US\",\n \"MasterLabel\": \"ContactChangeEvent\",\n \"NamespacePrefix\": null,\n \"ManageableState\": \"unmanaged\",\n \"CreatedDate\": \"2022-12-30T15:10:39.000+0000\",\n \"CreatedById\": \"00558000000yFyDAAU\",\n \"LastModifiedDate\": \"2022-12-30T15:10:39.000+0000\",\n \"LastModifiedById\": \"00558000000yFyDAAU\",\n \"SystemModstamp\": \"2022-12-30T15:10:39.000+0000\",\n \"FullName\": \"ChangeEvents_ContactChangeEvent\",\n \"Metadata\": {\n \"enrichedFields\": [],\n \"eventChannel\": \"ChangeEvents\",\n \"filterExpression\": null,\n \"selectedEntity\": \"ContactChangeEvent\",\n \"urls\": null\n },\n \"EventChannel\": \"ChangeEvents\",\n \"SelectedEntity\": \"ContactChangeEvent\",\n \"FilterExpression\": null\n}"
|
|
1196
|
+
}
|
|
1197
|
+
]
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
"name": "Delete channel member",
|
|
1201
|
+
"protocolProfileBehavior": {
|
|
1202
|
+
"strictSSL": false
|
|
1203
|
+
},
|
|
1204
|
+
"request": {
|
|
1205
|
+
"method": "DELETE",
|
|
1206
|
+
"header": [],
|
|
1207
|
+
"body": {
|
|
1208
|
+
"mode": "raw",
|
|
1209
|
+
"raw": "",
|
|
1210
|
+
"options": {
|
|
1211
|
+
"raw": {
|
|
1212
|
+
"language": "json"
|
|
1213
|
+
}
|
|
1214
|
+
}
|
|
1215
|
+
},
|
|
1216
|
+
"url": {
|
|
1217
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/PlatformEventChannelMember/:PLATFORM_EVENT_CHANNEL_MEMBER_ID",
|
|
1218
|
+
"host": [
|
|
1219
|
+
"{{_endpoint}}"
|
|
1220
|
+
],
|
|
1221
|
+
"path": [
|
|
1222
|
+
"services",
|
|
1223
|
+
"data",
|
|
1224
|
+
"v{{version}}",
|
|
1225
|
+
"tooling",
|
|
1226
|
+
"sobjects",
|
|
1227
|
+
"PlatformEventChannelMember",
|
|
1228
|
+
":PLATFORM_EVENT_CHANNEL_MEMBER_ID"
|
|
1229
|
+
],
|
|
1230
|
+
"variable": [
|
|
1231
|
+
{
|
|
1232
|
+
"key": "PLATFORM_EVENT_CHANNEL_MEMBER_ID",
|
|
1233
|
+
"value": null
|
|
1234
|
+
}
|
|
1235
|
+
]
|
|
1236
|
+
}
|
|
1237
|
+
},
|
|
1238
|
+
"response": []
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"name": "Publish single event",
|
|
1242
|
+
"request": {
|
|
1243
|
+
"method": "POST",
|
|
1244
|
+
"header": [],
|
|
1245
|
+
"body": {
|
|
1246
|
+
"mode": "raw",
|
|
1247
|
+
"raw": "{\n \"Annual_Mileage__c\": 12000,\n \"Current_Vehicle__c\": \"Fast car\",\n \"Model_Year__c\": 2019\n}",
|
|
1248
|
+
"options": {
|
|
1249
|
+
"raw": {
|
|
1250
|
+
"language": "json"
|
|
1251
|
+
}
|
|
1252
|
+
}
|
|
1253
|
+
},
|
|
1254
|
+
"url": {
|
|
1255
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/sobjects/:EventApiName/",
|
|
1256
|
+
"host": [
|
|
1257
|
+
"{{_endpoint}}"
|
|
1258
|
+
],
|
|
1259
|
+
"path": [
|
|
1260
|
+
"services",
|
|
1261
|
+
"data",
|
|
1262
|
+
"v{{version}}",
|
|
1263
|
+
"sobjects",
|
|
1264
|
+
":EventApiName",
|
|
1265
|
+
""
|
|
1266
|
+
],
|
|
1267
|
+
"variable": [
|
|
1268
|
+
{
|
|
1269
|
+
"key": "EventApiName",
|
|
1270
|
+
"value": "Carbon_Comparison__e"
|
|
1271
|
+
}
|
|
1272
|
+
]
|
|
1273
|
+
}
|
|
1274
|
+
},
|
|
1275
|
+
"response": [
|
|
1276
|
+
{
|
|
1277
|
+
"name": "Publish single event",
|
|
1278
|
+
"originalRequest": {
|
|
1279
|
+
"method": "POST",
|
|
1280
|
+
"header": [],
|
|
1281
|
+
"body": {
|
|
1282
|
+
"mode": "raw",
|
|
1283
|
+
"raw": "{\n \"Message__c\": \"Hello World!\"\n}",
|
|
1284
|
+
"options": {
|
|
1285
|
+
"raw": {
|
|
1286
|
+
"language": "json"
|
|
1287
|
+
}
|
|
1288
|
+
}
|
|
1289
|
+
},
|
|
1290
|
+
"url": {
|
|
1291
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/sobjects/:EventApiName/",
|
|
1292
|
+
"host": [
|
|
1293
|
+
"{{_endpoint}}"
|
|
1294
|
+
],
|
|
1295
|
+
"path": [
|
|
1296
|
+
"services",
|
|
1297
|
+
"data",
|
|
1298
|
+
"v{{version}}",
|
|
1299
|
+
"sobjects",
|
|
1300
|
+
":EventApiName",
|
|
1301
|
+
""
|
|
1302
|
+
],
|
|
1303
|
+
"variable": [
|
|
1304
|
+
{
|
|
1305
|
+
"key": "EventApiName",
|
|
1306
|
+
"value": "Sample__e"
|
|
1307
|
+
}
|
|
1308
|
+
]
|
|
1309
|
+
}
|
|
1310
|
+
},
|
|
1311
|
+
"status": "Created",
|
|
1312
|
+
"code": 201,
|
|
1313
|
+
"_postman_previewlanguage": "json",
|
|
1314
|
+
"header": [
|
|
1315
|
+
{
|
|
1316
|
+
"key": "Date",
|
|
1317
|
+
"value": "Mon, 03 Jul 2023 13:18:20 GMT"
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
"key": "Strict-Transport-Security",
|
|
1321
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
"key": "X-Content-Type-Options",
|
|
1325
|
+
"value": "nosniff"
|
|
1326
|
+
},
|
|
1327
|
+
{
|
|
1328
|
+
"key": "X-Robots-Tag",
|
|
1329
|
+
"value": "none"
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"key": "Cache-Control",
|
|
1333
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
1334
|
+
},
|
|
1335
|
+
{
|
|
1336
|
+
"key": "Sforce-Limit-Info",
|
|
1337
|
+
"value": "api-usage=16/15000"
|
|
1338
|
+
},
|
|
1339
|
+
{
|
|
1340
|
+
"key": "Location",
|
|
1341
|
+
"value": "/services/data/v58.0/sobjects/Sample__e/e00xx0000000001AAA"
|
|
1342
|
+
},
|
|
1343
|
+
{
|
|
1344
|
+
"key": "Content-Type",
|
|
1345
|
+
"value": "application/json;charset=UTF-8"
|
|
1346
|
+
},
|
|
1347
|
+
{
|
|
1348
|
+
"key": "Vary",
|
|
1349
|
+
"value": "Accept-Encoding"
|
|
1350
|
+
},
|
|
1351
|
+
{
|
|
1352
|
+
"key": "Content-Encoding",
|
|
1353
|
+
"value": "gzip"
|
|
1354
|
+
},
|
|
1355
|
+
{
|
|
1356
|
+
"key": "Transfer-Encoding",
|
|
1357
|
+
"value": "chunked"
|
|
1358
|
+
}
|
|
1359
|
+
],
|
|
1360
|
+
"cookie": [],
|
|
1361
|
+
"body": "{\n \"id\": \"e00xx0000000001AAA\",\n \"success\": true,\n \"errors\": [\n {\n \"statusCode\": \"OPERATION_ENQUEUED\",\n \"message\": \"234995b6-53b6-4887-93fc-ecd0fac8b36c\",\n \"fields\": []\n }\n ]\n}"
|
|
1362
|
+
}
|
|
1363
|
+
]
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
"name": "Publish multiple events",
|
|
1367
|
+
"request": {
|
|
1368
|
+
"method": "POST",
|
|
1369
|
+
"header": [],
|
|
1370
|
+
"body": {
|
|
1371
|
+
"mode": "raw",
|
|
1372
|
+
"raw": "{\n \"allOrNone\": true,\n \"compositeRequest\": [\n {\n \"method\": \"POST\",\n \"url\": \"/services/data/v{{version}}/sobjects/Carbon_Comparison__e\",\n \"referenceId\": \"event1\",\n \"body\": {\n \"Annual_Mileage__c\": 12000,\n \"Current_Vehicle__c\": \"Fast car 1\",\n \"Model_Year__c\": 2019\n }\n },\n {\n \"method\": \"POST\",\n \"url\": \"/services/data/v{{version}}/sobjects/Carbon_Comparison__e\",\n \"referenceId\": \"event2\",\n \"body\": {\n \"Annual_Mileage__c\": 12000,\n \"Current_Vehicle__c\": \"Fast car 2\",\n \"Model_Year__c\": 2019\n }\n }\n ]\n}",
|
|
1373
|
+
"options": {
|
|
1374
|
+
"raw": {
|
|
1375
|
+
"language": "json"
|
|
1376
|
+
}
|
|
1377
|
+
}
|
|
1378
|
+
},
|
|
1379
|
+
"url": {
|
|
1380
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/composite/",
|
|
1381
|
+
"host": [
|
|
1382
|
+
"{{_endpoint}}"
|
|
1383
|
+
],
|
|
1384
|
+
"path": [
|
|
1385
|
+
"services",
|
|
1386
|
+
"data",
|
|
1387
|
+
"v{{version}}",
|
|
1388
|
+
"composite",
|
|
1389
|
+
""
|
|
1390
|
+
]
|
|
1391
|
+
}
|
|
1392
|
+
},
|
|
1393
|
+
"response": []
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"name": "Publish multiple events with SOAP call",
|
|
1397
|
+
"request": {
|
|
1398
|
+
"method": "POST",
|
|
1399
|
+
"header": [
|
|
1400
|
+
{
|
|
1401
|
+
"key": "Content-Type",
|
|
1402
|
+
"value": "text/xml"
|
|
1403
|
+
},
|
|
1404
|
+
{
|
|
1405
|
+
"key": "charset",
|
|
1406
|
+
"value": "UTF-8"
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
"key": "SOAPAction",
|
|
1410
|
+
"value": "create"
|
|
1411
|
+
},
|
|
1412
|
+
{
|
|
1413
|
+
"key": "Accept",
|
|
1414
|
+
"value": "text/xml"
|
|
1415
|
+
}
|
|
1416
|
+
],
|
|
1417
|
+
"body": {
|
|
1418
|
+
"mode": "raw",
|
|
1419
|
+
"raw": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<SOAP-ENV:Envelope xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ns1=\"urn:sobject.partner.soap.sforce.com\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:ns2=\"urn:partner.soap.sforce.com\">\n <SOAP-ENV:Header>\n <ns2:SessionHeader>\n <ns2:sessionId>{{_accessToken}}</ns2:sessionId>\n </ns2:SessionHeader>\n </SOAP-ENV:Header>\n <SOAP-ENV:Body>\n <ns2:create>\n <ns2:sObjects>\n <ns1:type>Carbon_Comparison__e</ns1:type>\n <Annual_Mileage__c>12000</Annual_Mileage__c>\n <Current_Vehicle__c>Fast car 1</Current_Vehicle__c>\n <Model_Year__c>2019</Model_Year__c>\n </ns2:sObjects>\n <ns2:sObjects>\n <ns1:type>Carbon_Comparison__e</ns1:type>\n <Annual_Mileage__c>12000</Annual_Mileage__c>\n <Current_Vehicle__c>Fast car 2</Current_Vehicle__c>\n <Model_Year__c>2019</Model_Year__c>\n </ns2:sObjects>\n </ns2:create>\n </SOAP-ENV:Body>\n</SOAP-ENV:Envelope>",
|
|
1420
|
+
"options": {
|
|
1421
|
+
"raw": {
|
|
1422
|
+
"language": "xml"
|
|
1423
|
+
}
|
|
1424
|
+
}
|
|
1425
|
+
},
|
|
1426
|
+
"url": {
|
|
1427
|
+
"raw": "{{_endpoint}}/services/Soap/u/{{version}}",
|
|
1428
|
+
"host": [
|
|
1429
|
+
"{{_endpoint}}"
|
|
1430
|
+
],
|
|
1431
|
+
"path": [
|
|
1432
|
+
"services",
|
|
1433
|
+
"Soap",
|
|
1434
|
+
"u",
|
|
1435
|
+
"{{version}}"
|
|
1436
|
+
]
|
|
1437
|
+
}
|
|
1438
|
+
},
|
|
1439
|
+
"response": []
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
"name": "List named credentials",
|
|
1443
|
+
"protocolProfileBehavior": {
|
|
1444
|
+
"strictSSL": false,
|
|
1445
|
+
"disableBodyPruning": true
|
|
1446
|
+
},
|
|
1447
|
+
"request": {
|
|
1448
|
+
"method": "GET",
|
|
1449
|
+
"header": [],
|
|
1450
|
+
"body": {
|
|
1451
|
+
"mode": "raw",
|
|
1452
|
+
"raw": "",
|
|
1453
|
+
"options": {
|
|
1454
|
+
"raw": {
|
|
1455
|
+
"language": "json"
|
|
1456
|
+
}
|
|
1457
|
+
}
|
|
1458
|
+
},
|
|
1459
|
+
"url": {
|
|
1460
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/query/?q=SELECT FIELDS(ALL) FROM NamedCredential LIMIT 200",
|
|
1461
|
+
"host": [
|
|
1462
|
+
"{{_endpoint}}"
|
|
1463
|
+
],
|
|
1464
|
+
"path": [
|
|
1465
|
+
"services",
|
|
1466
|
+
"data",
|
|
1467
|
+
"v{{version}}",
|
|
1468
|
+
"tooling",
|
|
1469
|
+
"query",
|
|
1470
|
+
""
|
|
1471
|
+
],
|
|
1472
|
+
"query": [
|
|
1473
|
+
{
|
|
1474
|
+
"key": "q",
|
|
1475
|
+
"value": "SELECT FIELDS(ALL) FROM NamedCredential LIMIT 200"
|
|
1476
|
+
}
|
|
1477
|
+
]
|
|
1478
|
+
}
|
|
1479
|
+
},
|
|
1480
|
+
"response": [
|
|
1481
|
+
{
|
|
1482
|
+
"name": "List named credentials",
|
|
1483
|
+
"originalRequest": {
|
|
1484
|
+
"method": "GET",
|
|
1485
|
+
"header": [],
|
|
1486
|
+
"body": {
|
|
1487
|
+
"mode": "raw",
|
|
1488
|
+
"raw": "",
|
|
1489
|
+
"options": {
|
|
1490
|
+
"raw": {
|
|
1491
|
+
"language": "json"
|
|
1492
|
+
}
|
|
1493
|
+
}
|
|
1494
|
+
},
|
|
1495
|
+
"url": {
|
|
1496
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/query/?q=SELECT FIELDS(ALL) FROM NamedCredential LIMIT 200",
|
|
1497
|
+
"host": [
|
|
1498
|
+
"{{_endpoint}}"
|
|
1499
|
+
],
|
|
1500
|
+
"path": [
|
|
1501
|
+
"services",
|
|
1502
|
+
"data",
|
|
1503
|
+
"v{{version}}",
|
|
1504
|
+
"tooling",
|
|
1505
|
+
"query",
|
|
1506
|
+
""
|
|
1507
|
+
],
|
|
1508
|
+
"query": [
|
|
1509
|
+
{
|
|
1510
|
+
"key": "q",
|
|
1511
|
+
"value": "SELECT FIELDS(ALL) FROM NamedCredential LIMIT 200"
|
|
1512
|
+
}
|
|
1513
|
+
]
|
|
1514
|
+
}
|
|
1515
|
+
},
|
|
1516
|
+
"status": "OK",
|
|
1517
|
+
"code": 200,
|
|
1518
|
+
"_postman_previewlanguage": "json",
|
|
1519
|
+
"header": [
|
|
1520
|
+
{
|
|
1521
|
+
"key": "Date",
|
|
1522
|
+
"value": "Mon, 03 Jul 2023 13:09:27 GMT"
|
|
1523
|
+
},
|
|
1524
|
+
{
|
|
1525
|
+
"key": "Strict-Transport-Security",
|
|
1526
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
"key": "X-Content-Type-Options",
|
|
1530
|
+
"value": "nosniff"
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
"key": "X-Robots-Tag",
|
|
1534
|
+
"value": "none"
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
"key": "Cache-Control",
|
|
1538
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
"key": "Sforce-Limit-Info",
|
|
1542
|
+
"value": "api-usage=5/15000"
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
"key": "Content-Type",
|
|
1546
|
+
"value": "application/json;charset=UTF-8"
|
|
1547
|
+
},
|
|
1548
|
+
{
|
|
1549
|
+
"key": "Vary",
|
|
1550
|
+
"value": "Accept-Encoding"
|
|
1551
|
+
},
|
|
1552
|
+
{
|
|
1553
|
+
"key": "Content-Encoding",
|
|
1554
|
+
"value": "gzip"
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
"key": "Transfer-Encoding",
|
|
1558
|
+
"value": "chunked"
|
|
1559
|
+
}
|
|
1560
|
+
],
|
|
1561
|
+
"cookie": [],
|
|
1562
|
+
"body": "{\n \"size\": 1,\n \"totalSize\": 1,\n \"done\": true,\n \"queryLocator\": null,\n \"entityTypeName\": \"NamedCredential\",\n \"records\": [\n {\n \"attributes\": {\n \"type\": \"NamedCredential\",\n \"url\": \"/services/data/v58.0/tooling/sobjects/NamedCredential/0XA4H000000TNRhWAO\"\n },\n \"Id\": \"0XA4H000000TNRhWAO\",\n \"IsDeleted\": false,\n \"DeveloperName\": \"Slack_Webhook_for_integration_Channel\",\n \"Language\": \"en_US\",\n \"MasterLabel\": \"Slack Webhook for #integration Channel\",\n \"NamespacePrefix\": null,\n \"CreatedDate\": \"2020-11-06T14:04:44.000+0000\",\n \"CreatedById\": \"00558000000yFyDAAU\",\n \"LastModifiedDate\": \"2020-11-06T14:04:44.000+0000\",\n \"LastModifiedById\": \"00558000000yFyDAAU\",\n \"SystemModstamp\": \"2020-11-06T14:04:44.000+0000\",\n \"Endpoint\": \"https://hooks.slack.com/services/SECRET\",\n \"PrincipalType\": \"Anonymous\",\n \"JwtIssuer\": null,\n \"JwtFormulaSubject\": null,\n \"JwtTextSubject\": null,\n \"JwtValidityPeriodSeconds\": null,\n \"JwtAudience\": null,\n \"AuthTokenEndpointUrl\": null\n }\n ]\n}"
|
|
1563
|
+
}
|
|
1564
|
+
]
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
"name": "Get named credential",
|
|
1568
|
+
"protocolProfileBehavior": {
|
|
1569
|
+
"strictSSL": false,
|
|
1570
|
+
"disableBodyPruning": true
|
|
1571
|
+
},
|
|
1572
|
+
"request": {
|
|
1573
|
+
"method": "GET",
|
|
1574
|
+
"header": [],
|
|
1575
|
+
"body": {
|
|
1576
|
+
"mode": "raw",
|
|
1577
|
+
"raw": "",
|
|
1578
|
+
"options": {
|
|
1579
|
+
"raw": {
|
|
1580
|
+
"language": "json"
|
|
1581
|
+
}
|
|
1582
|
+
}
|
|
1583
|
+
},
|
|
1584
|
+
"url": {
|
|
1585
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/NamedCredential/:NAMED_CREDENTIAL_ID",
|
|
1586
|
+
"host": [
|
|
1587
|
+
"{{_endpoint}}"
|
|
1588
|
+
],
|
|
1589
|
+
"path": [
|
|
1590
|
+
"services",
|
|
1591
|
+
"data",
|
|
1592
|
+
"v{{version}}",
|
|
1593
|
+
"tooling",
|
|
1594
|
+
"sobjects",
|
|
1595
|
+
"NamedCredential",
|
|
1596
|
+
":NAMED_CREDENTIAL_ID"
|
|
1597
|
+
],
|
|
1598
|
+
"variable": [
|
|
1599
|
+
{
|
|
1600
|
+
"key": "NAMED_CREDENTIAL_ID",
|
|
1601
|
+
"value": "0XA4H000000TNRhWAO"
|
|
1602
|
+
}
|
|
1603
|
+
]
|
|
1604
|
+
}
|
|
1605
|
+
},
|
|
1606
|
+
"response": []
|
|
1607
|
+
},
|
|
1608
|
+
{
|
|
1609
|
+
"name": "Create named credential",
|
|
1610
|
+
"protocolProfileBehavior": {
|
|
1611
|
+
"strictSSL": false
|
|
1612
|
+
},
|
|
1613
|
+
"request": {
|
|
1614
|
+
"method": "POST",
|
|
1615
|
+
"header": [],
|
|
1616
|
+
"body": {
|
|
1617
|
+
"mode": "raw",
|
|
1618
|
+
"raw": "{\n \"FullName\": \"MyNamedCredential\",\n \"Metadata\": {\n \"label\": \"My Named Credential\",\n \"endpoint\": \"arn:aws:AWS_REGION:AWS_ACCOUNT_ID\",\n \"principalType\": \"Anonymous\",\n \"protocol\": \"NoAuthentication\"\n }\n}",
|
|
1619
|
+
"options": {
|
|
1620
|
+
"raw": {
|
|
1621
|
+
"language": "json"
|
|
1622
|
+
}
|
|
1623
|
+
}
|
|
1624
|
+
},
|
|
1625
|
+
"url": {
|
|
1626
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/NamedCredential",
|
|
1627
|
+
"host": [
|
|
1628
|
+
"{{_endpoint}}"
|
|
1629
|
+
],
|
|
1630
|
+
"path": [
|
|
1631
|
+
"services",
|
|
1632
|
+
"data",
|
|
1633
|
+
"v{{version}}",
|
|
1634
|
+
"tooling",
|
|
1635
|
+
"sobjects",
|
|
1636
|
+
"NamedCredential"
|
|
1637
|
+
]
|
|
1638
|
+
}
|
|
1639
|
+
},
|
|
1640
|
+
"response": []
|
|
1641
|
+
},
|
|
1642
|
+
{
|
|
1643
|
+
"name": "Delete named credential",
|
|
1644
|
+
"protocolProfileBehavior": {
|
|
1645
|
+
"strictSSL": false
|
|
1646
|
+
},
|
|
1647
|
+
"request": {
|
|
1648
|
+
"method": "DELETE",
|
|
1649
|
+
"header": [],
|
|
1650
|
+
"body": {
|
|
1651
|
+
"mode": "raw",
|
|
1652
|
+
"raw": "",
|
|
1653
|
+
"options": {
|
|
1654
|
+
"raw": {
|
|
1655
|
+
"language": "json"
|
|
1656
|
+
}
|
|
1657
|
+
}
|
|
1658
|
+
},
|
|
1659
|
+
"url": {
|
|
1660
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/NamedCredential/:NAMED_CREDENTIAL_ID",
|
|
1661
|
+
"host": [
|
|
1662
|
+
"{{_endpoint}}"
|
|
1663
|
+
],
|
|
1664
|
+
"path": [
|
|
1665
|
+
"services",
|
|
1666
|
+
"data",
|
|
1667
|
+
"v{{version}}",
|
|
1668
|
+
"tooling",
|
|
1669
|
+
"sobjects",
|
|
1670
|
+
"NamedCredential",
|
|
1671
|
+
":NAMED_CREDENTIAL_ID"
|
|
1672
|
+
],
|
|
1673
|
+
"variable": [
|
|
1674
|
+
{
|
|
1675
|
+
"key": "NAMED_CREDENTIAL_ID",
|
|
1676
|
+
"value": null
|
|
1677
|
+
}
|
|
1678
|
+
]
|
|
1679
|
+
}
|
|
1680
|
+
},
|
|
1681
|
+
"response": []
|
|
1682
|
+
},
|
|
1683
|
+
{
|
|
1684
|
+
"name": "Update named credential",
|
|
1685
|
+
"request": {
|
|
1686
|
+
"method": "PATCH",
|
|
1687
|
+
"header": [],
|
|
1688
|
+
"body": {
|
|
1689
|
+
"mode": "raw",
|
|
1690
|
+
"raw": "{\n \"FullName\": \"MyNamedCredential\",\n \"Metadata\": {\n \"label\": \"My Named Credential\",\n \"endpoint\" : \"arn:aws:AWS_REGION:AWS_ACCOUNT_ID\",\n \"principalType\" : \"Anonymous\",\n \"protocol\": \"NoAuthentication\" \n }\n}",
|
|
1691
|
+
"options": {
|
|
1692
|
+
"raw": {
|
|
1693
|
+
"language": "json"
|
|
1694
|
+
}
|
|
1695
|
+
}
|
|
1696
|
+
},
|
|
1697
|
+
"url": {
|
|
1698
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/NamedCredential/:NAMED_CREDENTIAL_ID",
|
|
1699
|
+
"host": [
|
|
1700
|
+
"{{_endpoint}}"
|
|
1701
|
+
],
|
|
1702
|
+
"path": [
|
|
1703
|
+
"services",
|
|
1704
|
+
"data",
|
|
1705
|
+
"v{{version}}",
|
|
1706
|
+
"tooling",
|
|
1707
|
+
"sobjects",
|
|
1708
|
+
"NamedCredential",
|
|
1709
|
+
":NAMED_CREDENTIAL_ID"
|
|
1710
|
+
],
|
|
1711
|
+
"variable": [
|
|
1712
|
+
{
|
|
1713
|
+
"key": "NAMED_CREDENTIAL_ID",
|
|
1714
|
+
"value": null
|
|
1715
|
+
}
|
|
1716
|
+
]
|
|
1717
|
+
}
|
|
1718
|
+
},
|
|
1719
|
+
"response": []
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
"name": "List event relays",
|
|
1723
|
+
"protocolProfileBehavior": {
|
|
1724
|
+
"strictSSL": false,
|
|
1725
|
+
"disableBodyPruning": true
|
|
1726
|
+
},
|
|
1727
|
+
"request": {
|
|
1728
|
+
"method": "GET",
|
|
1729
|
+
"header": [],
|
|
1730
|
+
"body": {
|
|
1731
|
+
"mode": "raw",
|
|
1732
|
+
"raw": "",
|
|
1733
|
+
"options": {
|
|
1734
|
+
"raw": {
|
|
1735
|
+
"language": "json"
|
|
1736
|
+
}
|
|
1737
|
+
}
|
|
1738
|
+
},
|
|
1739
|
+
"url": {
|
|
1740
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/query/?q=SELECT FIELDS(ALL) FROM EventRelayConfig LIMIT 200",
|
|
1741
|
+
"host": [
|
|
1742
|
+
"{{_endpoint}}"
|
|
1743
|
+
],
|
|
1744
|
+
"path": [
|
|
1745
|
+
"services",
|
|
1746
|
+
"data",
|
|
1747
|
+
"v{{version}}",
|
|
1748
|
+
"tooling",
|
|
1749
|
+
"query",
|
|
1750
|
+
""
|
|
1751
|
+
],
|
|
1752
|
+
"query": [
|
|
1753
|
+
{
|
|
1754
|
+
"key": "q",
|
|
1755
|
+
"value": "SELECT FIELDS(ALL) FROM EventRelayConfig LIMIT 200"
|
|
1756
|
+
}
|
|
1757
|
+
]
|
|
1758
|
+
}
|
|
1759
|
+
},
|
|
1760
|
+
"response": []
|
|
1761
|
+
},
|
|
1762
|
+
{
|
|
1763
|
+
"name": "Describe event relay",
|
|
1764
|
+
"protocolProfileBehavior": {
|
|
1765
|
+
"strictSSL": false,
|
|
1766
|
+
"disableBodyPruning": true
|
|
1767
|
+
},
|
|
1768
|
+
"request": {
|
|
1769
|
+
"method": "GET",
|
|
1770
|
+
"header": [],
|
|
1771
|
+
"body": {
|
|
1772
|
+
"mode": "raw",
|
|
1773
|
+
"raw": "",
|
|
1774
|
+
"options": {
|
|
1775
|
+
"raw": {
|
|
1776
|
+
"language": "json"
|
|
1777
|
+
}
|
|
1778
|
+
}
|
|
1779
|
+
},
|
|
1780
|
+
"url": {
|
|
1781
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/EventRelayConfig/describe",
|
|
1782
|
+
"host": [
|
|
1783
|
+
"{{_endpoint}}"
|
|
1784
|
+
],
|
|
1785
|
+
"path": [
|
|
1786
|
+
"services",
|
|
1787
|
+
"data",
|
|
1788
|
+
"v{{version}}",
|
|
1789
|
+
"tooling",
|
|
1790
|
+
"sobjects",
|
|
1791
|
+
"EventRelayConfig",
|
|
1792
|
+
"describe"
|
|
1793
|
+
]
|
|
1794
|
+
}
|
|
1795
|
+
},
|
|
1796
|
+
"response": []
|
|
1797
|
+
},
|
|
1798
|
+
{
|
|
1799
|
+
"name": "Create event relay",
|
|
1800
|
+
"protocolProfileBehavior": {
|
|
1801
|
+
"strictSSL": false
|
|
1802
|
+
},
|
|
1803
|
+
"request": {
|
|
1804
|
+
"method": "POST",
|
|
1805
|
+
"header": [],
|
|
1806
|
+
"body": {
|
|
1807
|
+
"mode": "raw",
|
|
1808
|
+
"raw": "{\n \"FullName\": \"MyEventRelay\",\n \"Metadata\": {\n \"eventChannel\": \"Carbon_Comparison_Channel__chn\",\n \"destinationResourceName\": \"callout:MyNamedCredential\",\n \"label\": \"My Event Relay\",\n \"relayOption\": \"{\\\"ReplayRecovery\\\":\\\"LATEST\\\"}\"\n }\n}",
|
|
1809
|
+
"options": {
|
|
1810
|
+
"raw": {
|
|
1811
|
+
"language": "json"
|
|
1812
|
+
}
|
|
1813
|
+
}
|
|
1814
|
+
},
|
|
1815
|
+
"url": {
|
|
1816
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/EventRelayConfig/",
|
|
1817
|
+
"host": [
|
|
1818
|
+
"{{_endpoint}}"
|
|
1819
|
+
],
|
|
1820
|
+
"path": [
|
|
1821
|
+
"services",
|
|
1822
|
+
"data",
|
|
1823
|
+
"v{{version}}",
|
|
1824
|
+
"tooling",
|
|
1825
|
+
"sobjects",
|
|
1826
|
+
"EventRelayConfig",
|
|
1827
|
+
""
|
|
1828
|
+
]
|
|
1829
|
+
}
|
|
1830
|
+
},
|
|
1831
|
+
"response": []
|
|
1832
|
+
},
|
|
1833
|
+
{
|
|
1834
|
+
"name": "Delete event relay",
|
|
1835
|
+
"protocolProfileBehavior": {
|
|
1836
|
+
"strictSSL": false
|
|
1837
|
+
},
|
|
1838
|
+
"request": {
|
|
1839
|
+
"method": "DELETE",
|
|
1840
|
+
"header": [],
|
|
1841
|
+
"body": {
|
|
1842
|
+
"mode": "raw",
|
|
1843
|
+
"raw": "",
|
|
1844
|
+
"options": {
|
|
1845
|
+
"raw": {
|
|
1846
|
+
"language": "json"
|
|
1847
|
+
}
|
|
1848
|
+
}
|
|
1849
|
+
},
|
|
1850
|
+
"url": {
|
|
1851
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/EventRelayConfig/:EVENT_RELAY_CONFIG_ID",
|
|
1852
|
+
"host": [
|
|
1853
|
+
"{{_endpoint}}"
|
|
1854
|
+
],
|
|
1855
|
+
"path": [
|
|
1856
|
+
"services",
|
|
1857
|
+
"data",
|
|
1858
|
+
"v{{version}}",
|
|
1859
|
+
"tooling",
|
|
1860
|
+
"sobjects",
|
|
1861
|
+
"EventRelayConfig",
|
|
1862
|
+
":EVENT_RELAY_CONFIG_ID"
|
|
1863
|
+
],
|
|
1864
|
+
"variable": [
|
|
1865
|
+
{
|
|
1866
|
+
"key": "EVENT_RELAY_CONFIG_ID",
|
|
1867
|
+
"value": null
|
|
1868
|
+
}
|
|
1869
|
+
]
|
|
1870
|
+
}
|
|
1871
|
+
},
|
|
1872
|
+
"response": []
|
|
1873
|
+
},
|
|
1874
|
+
{
|
|
1875
|
+
"name": "Get event relay",
|
|
1876
|
+
"protocolProfileBehavior": {
|
|
1877
|
+
"strictSSL": false,
|
|
1878
|
+
"disableBodyPruning": true
|
|
1879
|
+
},
|
|
1880
|
+
"request": {
|
|
1881
|
+
"method": "GET",
|
|
1882
|
+
"header": [],
|
|
1883
|
+
"body": {
|
|
1884
|
+
"mode": "raw",
|
|
1885
|
+
"raw": "",
|
|
1886
|
+
"options": {
|
|
1887
|
+
"raw": {
|
|
1888
|
+
"language": "json"
|
|
1889
|
+
}
|
|
1890
|
+
}
|
|
1891
|
+
},
|
|
1892
|
+
"url": {
|
|
1893
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/EventRelayConfig/:EVENT_RELAY_CONFIG_ID",
|
|
1894
|
+
"host": [
|
|
1895
|
+
"{{_endpoint}}"
|
|
1896
|
+
],
|
|
1897
|
+
"path": [
|
|
1898
|
+
"services",
|
|
1899
|
+
"data",
|
|
1900
|
+
"v{{version}}",
|
|
1901
|
+
"tooling",
|
|
1902
|
+
"sobjects",
|
|
1903
|
+
"EventRelayConfig",
|
|
1904
|
+
":EVENT_RELAY_CONFIG_ID"
|
|
1905
|
+
],
|
|
1906
|
+
"variable": [
|
|
1907
|
+
{
|
|
1908
|
+
"key": "EVENT_RELAY_CONFIG_ID",
|
|
1909
|
+
"value": "7k2RM000000008ZYAQ"
|
|
1910
|
+
}
|
|
1911
|
+
]
|
|
1912
|
+
}
|
|
1913
|
+
},
|
|
1914
|
+
"response": []
|
|
1915
|
+
},
|
|
1916
|
+
{
|
|
1917
|
+
"name": "Change event relay state",
|
|
1918
|
+
"protocolProfileBehavior": {
|
|
1919
|
+
"strictSSL": false
|
|
1920
|
+
},
|
|
1921
|
+
"request": {
|
|
1922
|
+
"method": "PATCH",
|
|
1923
|
+
"header": [
|
|
1924
|
+
{
|
|
1925
|
+
"key": "Content-Type",
|
|
1926
|
+
"value": "application/json"
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
"key": "SOAPAction",
|
|
1930
|
+
"value": "\"\""
|
|
1931
|
+
},
|
|
1932
|
+
{
|
|
1933
|
+
"key": "Authorization",
|
|
1934
|
+
"value": "Bearer {{_accessToken}}"
|
|
1935
|
+
}
|
|
1936
|
+
],
|
|
1937
|
+
"body": {
|
|
1938
|
+
"mode": "raw",
|
|
1939
|
+
"raw": "{\n \"Metadata\": {\n \"state\": \"RUN\"\n }\n}",
|
|
1940
|
+
"options": {
|
|
1941
|
+
"raw": {
|
|
1942
|
+
"language": "json"
|
|
1943
|
+
}
|
|
1944
|
+
}
|
|
1945
|
+
},
|
|
1946
|
+
"url": {
|
|
1947
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/EventRelayConfig/:EVENT_RELAY_CONFIG_ID",
|
|
1948
|
+
"host": [
|
|
1949
|
+
"{{_endpoint}}"
|
|
1950
|
+
],
|
|
1951
|
+
"path": [
|
|
1952
|
+
"services",
|
|
1953
|
+
"data",
|
|
1954
|
+
"v{{version}}",
|
|
1955
|
+
"tooling",
|
|
1956
|
+
"sobjects",
|
|
1957
|
+
"EventRelayConfig",
|
|
1958
|
+
":EVENT_RELAY_CONFIG_ID"
|
|
1959
|
+
],
|
|
1960
|
+
"variable": [
|
|
1961
|
+
{
|
|
1962
|
+
"key": "EVENT_RELAY_CONFIG_ID",
|
|
1963
|
+
"value": ""
|
|
1964
|
+
}
|
|
1965
|
+
]
|
|
1966
|
+
}
|
|
1967
|
+
},
|
|
1968
|
+
"response": []
|
|
1969
|
+
},
|
|
1970
|
+
{
|
|
1971
|
+
"name": "Update event relay",
|
|
1972
|
+
"protocolProfileBehavior": {
|
|
1973
|
+
"strictSSL": false
|
|
1974
|
+
},
|
|
1975
|
+
"request": {
|
|
1976
|
+
"method": "PATCH",
|
|
1977
|
+
"header": [
|
|
1978
|
+
{
|
|
1979
|
+
"key": "Content-Type",
|
|
1980
|
+
"value": "application/json"
|
|
1981
|
+
},
|
|
1982
|
+
{
|
|
1983
|
+
"key": "SOAPAction",
|
|
1984
|
+
"value": "\"\""
|
|
1985
|
+
},
|
|
1986
|
+
{
|
|
1987
|
+
"key": "Authorization",
|
|
1988
|
+
"value": "Bearer {{_accessToken}}"
|
|
1989
|
+
}
|
|
1990
|
+
],
|
|
1991
|
+
"body": {
|
|
1992
|
+
"mode": "raw",
|
|
1993
|
+
"raw": "{\n \"FullName\": \"MyEventRelay\",\n \"Metadata\": {\n \"label\": \"My Event Relay\",\n \"relayOption\": \"{\\\"ReplayRecovery\\\":\\\"LATEST\\\"}\"\n }\n}",
|
|
1994
|
+
"options": {
|
|
1995
|
+
"raw": {
|
|
1996
|
+
"language": "json"
|
|
1997
|
+
}
|
|
1998
|
+
}
|
|
1999
|
+
},
|
|
2000
|
+
"url": {
|
|
2001
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/EventRelayConfig/:EVENT_RELAY_CONFIG_ID",
|
|
2002
|
+
"host": [
|
|
2003
|
+
"{{_endpoint}}"
|
|
2004
|
+
],
|
|
2005
|
+
"path": [
|
|
2006
|
+
"services",
|
|
2007
|
+
"data",
|
|
2008
|
+
"v{{version}}",
|
|
2009
|
+
"tooling",
|
|
2010
|
+
"sobjects",
|
|
2011
|
+
"EventRelayConfig",
|
|
2012
|
+
":EVENT_RELAY_CONFIG_ID"
|
|
2013
|
+
],
|
|
2014
|
+
"variable": [
|
|
2015
|
+
{
|
|
2016
|
+
"key": "EVENT_RELAY_CONFIG_ID",
|
|
2017
|
+
"value": "7k2RM000000008ZYAQ"
|
|
2018
|
+
}
|
|
2019
|
+
]
|
|
2020
|
+
}
|
|
2021
|
+
},
|
|
2022
|
+
"response": []
|
|
2023
|
+
},
|
|
2024
|
+
{
|
|
2025
|
+
"name": "List event relay feedback items",
|
|
2026
|
+
"protocolProfileBehavior": {
|
|
2027
|
+
"strictSSL": false,
|
|
2028
|
+
"disableBodyPruning": true
|
|
2029
|
+
},
|
|
2030
|
+
"request": {
|
|
2031
|
+
"method": "GET",
|
|
2032
|
+
"header": [],
|
|
2033
|
+
"body": {
|
|
2034
|
+
"mode": "raw",
|
|
2035
|
+
"raw": "",
|
|
2036
|
+
"options": {
|
|
2037
|
+
"raw": {
|
|
2038
|
+
"language": "json"
|
|
2039
|
+
}
|
|
2040
|
+
}
|
|
2041
|
+
},
|
|
2042
|
+
"url": {
|
|
2043
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/query/?q=SELECT FIELDS(ALL) FROM EventRelayFeedback LIMIT 200",
|
|
2044
|
+
"host": [
|
|
2045
|
+
"{{_endpoint}}"
|
|
2046
|
+
],
|
|
2047
|
+
"path": [
|
|
2048
|
+
"services",
|
|
2049
|
+
"data",
|
|
2050
|
+
"v{{version}}",
|
|
2051
|
+
"query",
|
|
2052
|
+
""
|
|
2053
|
+
],
|
|
2054
|
+
"query": [
|
|
2055
|
+
{
|
|
2056
|
+
"key": "q",
|
|
2057
|
+
"value": "SELECT FIELDS(ALL) FROM EventRelayFeedback LIMIT 200"
|
|
2058
|
+
}
|
|
2059
|
+
]
|
|
2060
|
+
}
|
|
2061
|
+
},
|
|
2062
|
+
"response": []
|
|
2063
|
+
},
|
|
2064
|
+
{
|
|
2065
|
+
"name": "Get event relay feedback",
|
|
2066
|
+
"protocolProfileBehavior": {
|
|
2067
|
+
"strictSSL": false,
|
|
2068
|
+
"disableBodyPruning": true
|
|
2069
|
+
},
|
|
2070
|
+
"request": {
|
|
2071
|
+
"method": "GET",
|
|
2072
|
+
"header": [],
|
|
2073
|
+
"body": {
|
|
2074
|
+
"mode": "raw",
|
|
2075
|
+
"raw": "",
|
|
2076
|
+
"options": {
|
|
2077
|
+
"raw": {
|
|
2078
|
+
"language": "json"
|
|
2079
|
+
}
|
|
2080
|
+
}
|
|
2081
|
+
},
|
|
2082
|
+
"url": {
|
|
2083
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/sobjects/EventRelayFeedback/:EVENT_RELAY_FEEDBACK_ID",
|
|
2084
|
+
"host": [
|
|
2085
|
+
"{{_endpoint}}"
|
|
2086
|
+
],
|
|
2087
|
+
"path": [
|
|
2088
|
+
"services",
|
|
2089
|
+
"data",
|
|
2090
|
+
"v{{version}}",
|
|
2091
|
+
"sobjects",
|
|
2092
|
+
"EventRelayFeedback",
|
|
2093
|
+
":EVENT_RELAY_FEEDBACK_ID"
|
|
2094
|
+
],
|
|
2095
|
+
"variable": [
|
|
2096
|
+
{
|
|
2097
|
+
"key": "EVENT_RELAY_FEEDBACK_ID",
|
|
2098
|
+
"value": "7k4RM000000008AYAQ"
|
|
2099
|
+
}
|
|
2100
|
+
]
|
|
2101
|
+
}
|
|
2102
|
+
},
|
|
2103
|
+
"response": []
|
|
2104
|
+
},
|
|
2105
|
+
{
|
|
2106
|
+
"name": "Describe event felay feedback",
|
|
2107
|
+
"protocolProfileBehavior": {
|
|
2108
|
+
"strictSSL": false,
|
|
2109
|
+
"disableBodyPruning": true
|
|
2110
|
+
},
|
|
2111
|
+
"request": {
|
|
2112
|
+
"method": "GET",
|
|
2113
|
+
"header": [],
|
|
2114
|
+
"body": {
|
|
2115
|
+
"mode": "raw",
|
|
2116
|
+
"raw": "",
|
|
2117
|
+
"options": {
|
|
2118
|
+
"raw": {
|
|
2119
|
+
"language": "json"
|
|
2120
|
+
}
|
|
2121
|
+
}
|
|
2122
|
+
},
|
|
2123
|
+
"url": {
|
|
2124
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/sobjects/EventRelayFeedback/describe",
|
|
2125
|
+
"host": [
|
|
2126
|
+
"{{_endpoint}}"
|
|
2127
|
+
],
|
|
2128
|
+
"path": [
|
|
2129
|
+
"services",
|
|
2130
|
+
"data",
|
|
2131
|
+
"v{{version}}",
|
|
2132
|
+
"sobjects",
|
|
2133
|
+
"EventRelayFeedback",
|
|
2134
|
+
"describe"
|
|
2135
|
+
]
|
|
2136
|
+
}
|
|
2137
|
+
},
|
|
2138
|
+
"response": []
|
|
2139
|
+
},
|
|
2140
|
+
{
|
|
2141
|
+
"name": "Platform Event Schema by Schema ID",
|
|
2142
|
+
"request": {
|
|
2143
|
+
"method": "GET",
|
|
2144
|
+
"header": [
|
|
2145
|
+
{
|
|
2146
|
+
"key": "Content-Type",
|
|
2147
|
+
"value": "application/json"
|
|
2148
|
+
}
|
|
2149
|
+
],
|
|
2150
|
+
"url": {
|
|
2151
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/event/eventSchema/:SCHEMA_ID",
|
|
2152
|
+
"host": [
|
|
2153
|
+
"{{_endpoint}}"
|
|
2154
|
+
],
|
|
2155
|
+
"path": [
|
|
2156
|
+
"services",
|
|
2157
|
+
"data",
|
|
2158
|
+
"v{{version}}",
|
|
2159
|
+
"event",
|
|
2160
|
+
"eventSchema",
|
|
2161
|
+
":SCHEMA_ID"
|
|
2162
|
+
],
|
|
2163
|
+
"query": [
|
|
2164
|
+
{
|
|
2165
|
+
"key": "payloadFormat",
|
|
2166
|
+
"value": "",
|
|
2167
|
+
"description": "(Optional query parameter. Available in API version 43.0 and later.) The format of the returned event schema. This parameter can take one of the following values.\nEXPANDED—The JSON representation of the event schema, which is the default format when payloadFormat is not specified in API version 43.0 and later.\nCOMPACT—A format that adheres to the open-source Apache Avro specification for the record complex type (see Apache Avro Format). Subscribers use the compact schema format to deserialize compact events received in binary form.",
|
|
2168
|
+
"disabled": true
|
|
2169
|
+
}
|
|
2170
|
+
],
|
|
2171
|
+
"variable": [
|
|
2172
|
+
{
|
|
2173
|
+
"key": "SCHEMA_ID",
|
|
2174
|
+
"value": ""
|
|
2175
|
+
}
|
|
2176
|
+
]
|
|
2177
|
+
},
|
|
2178
|
+
"description": "Set, reset, or get information about a user password. This resource is available in REST API version 24.0 and later."
|
|
2179
|
+
},
|
|
2180
|
+
"response": []
|
|
2181
|
+
},
|
|
2182
|
+
{
|
|
2183
|
+
"name": "Platform Event Schema by Event Name",
|
|
2184
|
+
"request": {
|
|
2185
|
+
"method": "GET",
|
|
2186
|
+
"header": [
|
|
2187
|
+
{
|
|
2188
|
+
"key": "Content-Type",
|
|
2189
|
+
"value": "application/json"
|
|
2190
|
+
}
|
|
2191
|
+
],
|
|
2192
|
+
"url": {
|
|
2193
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/sobjects/:EVENT_NAME/eventSchema",
|
|
2194
|
+
"host": [
|
|
2195
|
+
"{{_endpoint}}"
|
|
2196
|
+
],
|
|
2197
|
+
"path": [
|
|
2198
|
+
"services",
|
|
2199
|
+
"data",
|
|
2200
|
+
"v{{version}}",
|
|
2201
|
+
"sobjects",
|
|
2202
|
+
":EVENT_NAME",
|
|
2203
|
+
"eventSchema"
|
|
2204
|
+
],
|
|
2205
|
+
"query": [
|
|
2206
|
+
{
|
|
2207
|
+
"key": "payloadFormat",
|
|
2208
|
+
"value": "",
|
|
2209
|
+
"description": "(Optional query parameter. Available in API version 43.0 and later.) The format of the returned event schema. This parameter can take one of the following values.\nEXPANDED—The JSON representation of the event schema, which is the default format when payloadFormat is not specified in API version 43.0 and later.\nCOMPACT—A format that adheres to the open-source Apache Avro specification for the record complex type (see Apache Avro Format). Subscribers use the compact schema format to deserialize compact events received in binary form.",
|
|
2210
|
+
"disabled": true
|
|
2211
|
+
}
|
|
2212
|
+
],
|
|
2213
|
+
"variable": [
|
|
2214
|
+
{
|
|
2215
|
+
"key": "EVENT_NAME",
|
|
2216
|
+
"value": "",
|
|
2217
|
+
"description": "API Name of the event"
|
|
2218
|
+
}
|
|
2219
|
+
]
|
|
2220
|
+
},
|
|
2221
|
+
"description": "Set, reset, or get information about a user password. This resource is available in REST API version 24.0 and later."
|
|
2222
|
+
},
|
|
2223
|
+
"response": [
|
|
2224
|
+
{
|
|
2225
|
+
"name": "Platform Event Schema by Event Name",
|
|
2226
|
+
"originalRequest": {
|
|
2227
|
+
"method": "GET",
|
|
2228
|
+
"header": [
|
|
2229
|
+
{
|
|
2230
|
+
"key": "Content-Type",
|
|
2231
|
+
"value": "application/json"
|
|
2232
|
+
}
|
|
2233
|
+
],
|
|
2234
|
+
"url": {
|
|
2235
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/sobjects/:EVENT_NAME/eventSchema",
|
|
2236
|
+
"host": [
|
|
2237
|
+
"{{_endpoint}}"
|
|
2238
|
+
],
|
|
2239
|
+
"path": [
|
|
2240
|
+
"services",
|
|
2241
|
+
"data",
|
|
2242
|
+
"v{{version}}",
|
|
2243
|
+
"sobjects",
|
|
2244
|
+
":EVENT_NAME",
|
|
2245
|
+
"eventSchema"
|
|
2246
|
+
],
|
|
2247
|
+
"query": [
|
|
2248
|
+
{
|
|
2249
|
+
"key": "payloadFormat",
|
|
2250
|
+
"value": "",
|
|
2251
|
+
"description": "(Optional query parameter. Available in API version 43.0 and later.) The format of the returned event schema. This parameter can take one of the following values.\nEXPANDED—The JSON representation of the event schema, which is the default format when payloadFormat is not specified in API version 43.0 and later.\nCOMPACT—A format that adheres to the open-source Apache Avro specification for the record complex type (see Apache Avro Format). Subscribers use the compact schema format to deserialize compact events received in binary form.",
|
|
2252
|
+
"disabled": true
|
|
2253
|
+
}
|
|
2254
|
+
],
|
|
2255
|
+
"variable": [
|
|
2256
|
+
{
|
|
2257
|
+
"key": "EVENT_NAME",
|
|
2258
|
+
"value": "Sample__e",
|
|
2259
|
+
"description": "API Name of the event"
|
|
2260
|
+
}
|
|
2261
|
+
]
|
|
2262
|
+
}
|
|
2263
|
+
},
|
|
2264
|
+
"status": "OK",
|
|
2265
|
+
"code": 200,
|
|
2266
|
+
"_postman_previewlanguage": "json",
|
|
2267
|
+
"header": [
|
|
2268
|
+
{
|
|
2269
|
+
"key": "Date",
|
|
2270
|
+
"value": "Mon, 03 Jul 2023 13:06:08 GMT"
|
|
2271
|
+
},
|
|
2272
|
+
{
|
|
2273
|
+
"key": "Strict-Transport-Security",
|
|
2274
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
2275
|
+
},
|
|
2276
|
+
{
|
|
2277
|
+
"key": "X-Content-Type-Options",
|
|
2278
|
+
"value": "nosniff"
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
"key": "X-Robots-Tag",
|
|
2282
|
+
"value": "none"
|
|
2283
|
+
},
|
|
2284
|
+
{
|
|
2285
|
+
"key": "Cache-Control",
|
|
2286
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
"key": "Sforce-Limit-Info",
|
|
2290
|
+
"value": "api-usage=2/15000"
|
|
2291
|
+
},
|
|
2292
|
+
{
|
|
2293
|
+
"key": "Content-Type",
|
|
2294
|
+
"value": "application/json;charset=UTF-8"
|
|
2295
|
+
},
|
|
2296
|
+
{
|
|
2297
|
+
"key": "Vary",
|
|
2298
|
+
"value": "Accept-Encoding"
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
"key": "Content-Encoding",
|
|
2302
|
+
"value": "gzip"
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
"key": "Transfer-Encoding",
|
|
2306
|
+
"value": "chunked"
|
|
2307
|
+
}
|
|
2308
|
+
],
|
|
2309
|
+
"cookie": [],
|
|
2310
|
+
"body": "{\n \"name\": \"Sample__e\",\n \"namespace\": \"com.sforce.eventbus\",\n \"type\": \"expanded-record\",\n \"fields\": [\n {\n \"name\": \"data\",\n \"type\": {\n \"type\": \"record\",\n \"name\": \"Data\",\n \"namespace\": \"\",\n \"fields\": [\n {\n \"name\": \"schema\",\n \"type\": \"string\"\n },\n {\n \"name\": \"payload\",\n \"type\": {\n \"type\": \"record\",\n \"name\": \"Payload\",\n \"doc\": \"\",\n \"fields\": [\n {\n \"name\": \"CreatedDate\",\n \"type\": \"string\",\n \"doc\": \"CreatedDate:DateTime\"\n },\n {\n \"name\": \"CreatedById\",\n \"type\": \"string\",\n \"doc\": \"CreatedBy:EntityId\"\n },\n {\n \"name\": \"Message__c\",\n \"type\": [\n \"null\",\n \"string\"\n ],\n \"doc\": \"Data:Text:00N4H00000Ecs0G\",\n \"default\": null\n }\n ]\n }\n },\n {\n \"name\": \"event\",\n \"type\": {\n \"type\": \"record\",\n \"name\": \"Event\",\n \"fields\": [\n {\n \"name\": \"replayId\",\n \"type\": \"long\"\n }\n ]\n }\n }\n ]\n }\n },\n {\n \"name\": \"channel\",\n \"type\": \"string\"\n }\n ]\n}"
|
|
2311
|
+
}
|
|
2312
|
+
]
|
|
2313
|
+
},
|
|
2314
|
+
{
|
|
2315
|
+
"name": "Create managed event subscription",
|
|
2316
|
+
"protocolProfileBehavior": {
|
|
2317
|
+
"strictSSL": false
|
|
2318
|
+
},
|
|
2319
|
+
"request": {
|
|
2320
|
+
"method": "POST",
|
|
2321
|
+
"header": [
|
|
2322
|
+
{
|
|
2323
|
+
"key": "",
|
|
2324
|
+
"value": "",
|
|
2325
|
+
"disabled": true
|
|
2326
|
+
},
|
|
2327
|
+
{
|
|
2328
|
+
"key": "",
|
|
2329
|
+
"value": "",
|
|
2330
|
+
"disabled": true
|
|
2331
|
+
},
|
|
2332
|
+
{
|
|
2333
|
+
"key": "",
|
|
2334
|
+
"value": "",
|
|
2335
|
+
"disabled": true
|
|
2336
|
+
}
|
|
2337
|
+
],
|
|
2338
|
+
"body": {
|
|
2339
|
+
"mode": "raw",
|
|
2340
|
+
"raw": "{\n \"FullName\": \"Managed_Sub_OpportunityChangeEvent\",\n \"Metadata\": {\n \"label\": \"Managed Sub OpportunityChangeEvent\",\n \"topicName\": \"/data/OpportunityChangeEvent\",\n \"defaultReplay\": \"LATEST\",\n \"state\": \"RUN\",\n \"errorRecoveryReplay\": \"LATEST\"\n }\n}",
|
|
2341
|
+
"options": {
|
|
2342
|
+
"raw": {
|
|
2343
|
+
"language": "json"
|
|
2344
|
+
}
|
|
2345
|
+
}
|
|
2346
|
+
},
|
|
2347
|
+
"url": {
|
|
2348
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/ManagedEventSubscription",
|
|
2349
|
+
"host": [
|
|
2350
|
+
"{{_endpoint}}"
|
|
2351
|
+
],
|
|
2352
|
+
"path": [
|
|
2353
|
+
"services",
|
|
2354
|
+
"data",
|
|
2355
|
+
"v{{version}}",
|
|
2356
|
+
"tooling",
|
|
2357
|
+
"sobjects",
|
|
2358
|
+
"ManagedEventSubscription"
|
|
2359
|
+
]
|
|
2360
|
+
}
|
|
2361
|
+
},
|
|
2362
|
+
"response": []
|
|
2363
|
+
},
|
|
2364
|
+
{
|
|
2365
|
+
"name": "Get managed event subscription by ID",
|
|
2366
|
+
"protocolProfileBehavior": {
|
|
2367
|
+
"strictSSL": false,
|
|
2368
|
+
"disableBodyPruning": true
|
|
2369
|
+
},
|
|
2370
|
+
"request": {
|
|
2371
|
+
"method": "GET",
|
|
2372
|
+
"header": [],
|
|
2373
|
+
"body": {
|
|
2374
|
+
"mode": "raw",
|
|
2375
|
+
"raw": "",
|
|
2376
|
+
"options": {
|
|
2377
|
+
"raw": {
|
|
2378
|
+
"language": "json"
|
|
2379
|
+
}
|
|
2380
|
+
}
|
|
2381
|
+
},
|
|
2382
|
+
"url": {
|
|
2383
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/ManagedEventSubscription/:managedEventSubscriptionId",
|
|
2384
|
+
"host": [
|
|
2385
|
+
"{{_endpoint}}"
|
|
2386
|
+
],
|
|
2387
|
+
"path": [
|
|
2388
|
+
"services",
|
|
2389
|
+
"data",
|
|
2390
|
+
"v{{version}}",
|
|
2391
|
+
"tooling",
|
|
2392
|
+
"sobjects",
|
|
2393
|
+
"ManagedEventSubscription",
|
|
2394
|
+
":managedEventSubscriptionId"
|
|
2395
|
+
],
|
|
2396
|
+
"variable": [
|
|
2397
|
+
{
|
|
2398
|
+
"key": "managedEventSubscriptionId",
|
|
2399
|
+
"value": ""
|
|
2400
|
+
}
|
|
2401
|
+
]
|
|
2402
|
+
}
|
|
2403
|
+
},
|
|
2404
|
+
"response": []
|
|
2405
|
+
},
|
|
2406
|
+
{
|
|
2407
|
+
"name": "Get all managed event subscriptions",
|
|
2408
|
+
"protocolProfileBehavior": {
|
|
2409
|
+
"strictSSL": false,
|
|
2410
|
+
"disableBodyPruning": true
|
|
2411
|
+
},
|
|
2412
|
+
"request": {
|
|
2413
|
+
"method": "GET",
|
|
2414
|
+
"header": [
|
|
2415
|
+
{
|
|
2416
|
+
"key": "",
|
|
2417
|
+
"value": "",
|
|
2418
|
+
"disabled": true
|
|
2419
|
+
},
|
|
2420
|
+
{
|
|
2421
|
+
"key": "",
|
|
2422
|
+
"value": "",
|
|
2423
|
+
"disabled": true
|
|
2424
|
+
},
|
|
2425
|
+
{
|
|
2426
|
+
"key": "",
|
|
2427
|
+
"value": "",
|
|
2428
|
+
"disabled": true
|
|
2429
|
+
}
|
|
2430
|
+
],
|
|
2431
|
+
"body": {
|
|
2432
|
+
"mode": "raw",
|
|
2433
|
+
"raw": "",
|
|
2434
|
+
"options": {
|
|
2435
|
+
"raw": {
|
|
2436
|
+
"language": "json"
|
|
2437
|
+
}
|
|
2438
|
+
}
|
|
2439
|
+
},
|
|
2440
|
+
"url": {
|
|
2441
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/query/?q=SELECT%20Id,IsDeleted,DeveloperName,Language,MasterLabel,NamespacePrefix,ManageableState,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,Version%20FROM%20ManagedEventSubscription",
|
|
2442
|
+
"host": [
|
|
2443
|
+
"{{_endpoint}}"
|
|
2444
|
+
],
|
|
2445
|
+
"path": [
|
|
2446
|
+
"services",
|
|
2447
|
+
"data",
|
|
2448
|
+
"v{{version}}",
|
|
2449
|
+
"tooling",
|
|
2450
|
+
"query",
|
|
2451
|
+
""
|
|
2452
|
+
],
|
|
2453
|
+
"query": [
|
|
2454
|
+
{
|
|
2455
|
+
"key": "q",
|
|
2456
|
+
"value": "SELECT%20Id,IsDeleted,DeveloperName,Language,MasterLabel,NamespacePrefix,ManageableState,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,Version%20FROM%20ManagedEventSubscription"
|
|
2457
|
+
}
|
|
2458
|
+
]
|
|
2459
|
+
}
|
|
2460
|
+
},
|
|
2461
|
+
"response": [
|
|
2462
|
+
{
|
|
2463
|
+
"name": "Get all managed event subscriptions",
|
|
2464
|
+
"originalRequest": {
|
|
2465
|
+
"method": "GET",
|
|
2466
|
+
"header": [
|
|
2467
|
+
{
|
|
2468
|
+
"key": "",
|
|
2469
|
+
"value": "",
|
|
2470
|
+
"disabled": true
|
|
2471
|
+
},
|
|
2472
|
+
{
|
|
2473
|
+
"key": "",
|
|
2474
|
+
"value": "",
|
|
2475
|
+
"disabled": true
|
|
2476
|
+
},
|
|
2477
|
+
{
|
|
2478
|
+
"key": "",
|
|
2479
|
+
"value": "",
|
|
2480
|
+
"disabled": true
|
|
2481
|
+
}
|
|
2482
|
+
],
|
|
2483
|
+
"body": {
|
|
2484
|
+
"mode": "raw",
|
|
2485
|
+
"raw": "",
|
|
2486
|
+
"options": {
|
|
2487
|
+
"raw": {
|
|
2488
|
+
"language": "json"
|
|
2489
|
+
}
|
|
2490
|
+
}
|
|
2491
|
+
},
|
|
2492
|
+
"url": {
|
|
2493
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/query/?q=SELECT%20Id,IsDeleted,DeveloperName,Language,MasterLabel,NamespacePrefix,ManageableState,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,Version%20FROM%20ManagedEventSubscription",
|
|
2494
|
+
"host": [
|
|
2495
|
+
"{{_endpoint}}"
|
|
2496
|
+
],
|
|
2497
|
+
"path": [
|
|
2498
|
+
"services",
|
|
2499
|
+
"data",
|
|
2500
|
+
"v{{version}}",
|
|
2501
|
+
"tooling",
|
|
2502
|
+
"query",
|
|
2503
|
+
""
|
|
2504
|
+
],
|
|
2505
|
+
"query": [
|
|
2506
|
+
{
|
|
2507
|
+
"key": "q",
|
|
2508
|
+
"value": "SELECT%20Id,IsDeleted,DeveloperName,Language,MasterLabel,NamespacePrefix,ManageableState,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,Version%20FROM%20ManagedEventSubscription"
|
|
2509
|
+
}
|
|
2510
|
+
]
|
|
2511
|
+
}
|
|
2512
|
+
},
|
|
2513
|
+
"status": "OK",
|
|
2514
|
+
"code": 200,
|
|
2515
|
+
"_postman_previewlanguage": "json",
|
|
2516
|
+
"header": [
|
|
2517
|
+
{
|
|
2518
|
+
"key": "Date",
|
|
2519
|
+
"value": "Thu, 05 Dec 2024 09:18:26 GMT"
|
|
2520
|
+
},
|
|
2521
|
+
{
|
|
2522
|
+
"key": "Strict-Transport-Security",
|
|
2523
|
+
"value": "max-age=63072000; includeSubDomains"
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
"key": "X-Content-Type-Options",
|
|
2527
|
+
"value": "nosniff"
|
|
2528
|
+
},
|
|
2529
|
+
{
|
|
2530
|
+
"key": "X-Robots-Tag",
|
|
2531
|
+
"value": "none"
|
|
2532
|
+
},
|
|
2533
|
+
{
|
|
2534
|
+
"key": "Cache-Control",
|
|
2535
|
+
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
|
|
2536
|
+
},
|
|
2537
|
+
{
|
|
2538
|
+
"key": "Sforce-Limit-Info",
|
|
2539
|
+
"value": "api-usage=79/15000"
|
|
2540
|
+
},
|
|
2541
|
+
{
|
|
2542
|
+
"key": "Content-Type",
|
|
2543
|
+
"value": "application/json;charset=UTF-8"
|
|
2544
|
+
},
|
|
2545
|
+
{
|
|
2546
|
+
"key": "Vary",
|
|
2547
|
+
"value": "Accept-Encoding"
|
|
2548
|
+
},
|
|
2549
|
+
{
|
|
2550
|
+
"key": "Content-Encoding",
|
|
2551
|
+
"value": "gzip"
|
|
2552
|
+
},
|
|
2553
|
+
{
|
|
2554
|
+
"key": "Transfer-Encoding",
|
|
2555
|
+
"value": "chunked"
|
|
2556
|
+
}
|
|
2557
|
+
],
|
|
2558
|
+
"cookie": [],
|
|
2559
|
+
"body": "{\n \"size\": 2,\n \"totalSize\": 2,\n \"done\": true,\n \"queryLocator\": null,\n \"entityTypeName\": \"ManagedEventSubscription\",\n \"records\": [\n {\n \"attributes\": {\n \"type\": \"ManagedEventSubscription\",\n \"url\": \"/services/data/v62.0/tooling/sobjects/ManagedEventSubscription/18xJ80000000001IAA\"\n },\n \"Id\": \"18xJ80000000001IAA\",\n \"IsDeleted\": false,\n \"DeveloperName\": \"Managed_Sample_PE\",\n \"Language\": \"en_US\",\n \"MasterLabel\": \"Managed Sub Sample Platform Event\",\n \"NamespacePrefix\": null,\n \"ManageableState\": \"unmanaged\",\n \"CreatedDate\": \"2024-11-28T17:15:30.000+0000\",\n \"CreatedById\": \"00558000000yFyDAAU\",\n \"LastModifiedDate\": \"2024-11-28T21:08:18.000+0000\",\n \"LastModifiedById\": \"00558000000yFyDAAU\",\n \"SystemModstamp\": \"2024-11-28T21:08:18.000+0000\",\n \"Version\": \"3\"\n },\n {\n \"attributes\": {\n \"type\": \"ManagedEventSubscription\",\n \"url\": \"/services/data/v62.0/tooling/sobjects/ManagedEventSubscription/18xJ80000000006IAA\"\n },\n \"Id\": \"18xJ80000000006IAA\",\n \"IsDeleted\": false,\n \"DeveloperName\": \"Managed_Inactive_Sample_PE\",\n \"Language\": \"en_US\",\n \"MasterLabel\": \"Managed Inactive Sample PE\",\n \"NamespacePrefix\": null,\n \"ManageableState\": \"unmanaged\",\n \"CreatedDate\": \"2024-12-05T07:56:20.000+0000\",\n \"CreatedById\": \"00558000000yFyDAAU\",\n \"LastModifiedDate\": \"2024-12-05T07:56:20.000+0000\",\n \"LastModifiedById\": \"00558000000yFyDAAU\",\n \"SystemModstamp\": \"2024-12-05T07:56:20.000+0000\",\n \"Version\": \"1\"\n }\n ]\n}"
|
|
2560
|
+
}
|
|
2561
|
+
]
|
|
2562
|
+
},
|
|
2563
|
+
{
|
|
2564
|
+
"name": "Describe managed event subscription",
|
|
2565
|
+
"protocolProfileBehavior": {
|
|
2566
|
+
"strictSSL": false,
|
|
2567
|
+
"disableBodyPruning": true
|
|
2568
|
+
},
|
|
2569
|
+
"request": {
|
|
2570
|
+
"method": "GET",
|
|
2571
|
+
"header": [],
|
|
2572
|
+
"body": {
|
|
2573
|
+
"mode": "raw",
|
|
2574
|
+
"raw": "",
|
|
2575
|
+
"options": {
|
|
2576
|
+
"raw": {
|
|
2577
|
+
"language": "json"
|
|
2578
|
+
}
|
|
2579
|
+
}
|
|
2580
|
+
},
|
|
2581
|
+
"url": {
|
|
2582
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/ManagedEventSubscription/describe",
|
|
2583
|
+
"host": [
|
|
2584
|
+
"{{_endpoint}}"
|
|
2585
|
+
],
|
|
2586
|
+
"path": [
|
|
2587
|
+
"services",
|
|
2588
|
+
"data",
|
|
2589
|
+
"v{{version}}",
|
|
2590
|
+
"tooling",
|
|
2591
|
+
"sobjects",
|
|
2592
|
+
"ManagedEventSubscription",
|
|
2593
|
+
"describe"
|
|
2594
|
+
]
|
|
2595
|
+
}
|
|
2596
|
+
},
|
|
2597
|
+
"response": []
|
|
2598
|
+
},
|
|
2599
|
+
{
|
|
2600
|
+
"name": "Update managed event subscription",
|
|
2601
|
+
"protocolProfileBehavior": {
|
|
2602
|
+
"strictSSL": false
|
|
2603
|
+
},
|
|
2604
|
+
"request": {
|
|
2605
|
+
"method": "PATCH",
|
|
2606
|
+
"header": [],
|
|
2607
|
+
"body": {
|
|
2608
|
+
"mode": "raw",
|
|
2609
|
+
"raw": "{\n \"FullName\": \"Managed_Sub_OpportunityChangeEvent\",\n \"Metadata\": {\n \"state\": \"STOP\"\n }\n}",
|
|
2610
|
+
"options": {
|
|
2611
|
+
"raw": {
|
|
2612
|
+
"language": "json"
|
|
2613
|
+
}
|
|
2614
|
+
}
|
|
2615
|
+
},
|
|
2616
|
+
"url": {
|
|
2617
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/ManagedEventSubscription/:managedEventSubscriptionId",
|
|
2618
|
+
"host": [
|
|
2619
|
+
"{{_endpoint}}"
|
|
2620
|
+
],
|
|
2621
|
+
"path": [
|
|
2622
|
+
"services",
|
|
2623
|
+
"data",
|
|
2624
|
+
"v{{version}}",
|
|
2625
|
+
"tooling",
|
|
2626
|
+
"sobjects",
|
|
2627
|
+
"ManagedEventSubscription",
|
|
2628
|
+
":managedEventSubscriptionId"
|
|
2629
|
+
],
|
|
2630
|
+
"variable": [
|
|
2631
|
+
{
|
|
2632
|
+
"key": "managedEventSubscriptionId",
|
|
2633
|
+
"value": ""
|
|
2634
|
+
}
|
|
2635
|
+
]
|
|
2636
|
+
}
|
|
2637
|
+
},
|
|
2638
|
+
"response": []
|
|
2639
|
+
},
|
|
2640
|
+
{
|
|
2641
|
+
"name": "Delete managed event subscription",
|
|
2642
|
+
"protocolProfileBehavior": {
|
|
2643
|
+
"strictSSL": false
|
|
2644
|
+
},
|
|
2645
|
+
"request": {
|
|
2646
|
+
"method": "DELETE",
|
|
2647
|
+
"header": [],
|
|
2648
|
+
"body": {
|
|
2649
|
+
"mode": "raw",
|
|
2650
|
+
"raw": "",
|
|
2651
|
+
"options": {
|
|
2652
|
+
"raw": {
|
|
2653
|
+
"language": "json"
|
|
2654
|
+
}
|
|
2655
|
+
}
|
|
2656
|
+
},
|
|
2657
|
+
"url": {
|
|
2658
|
+
"raw": "{{_endpoint}}/services/data/v{{version}}/tooling/sobjects/ManagedEventSubscription/:managedEventSubscriptionId",
|
|
2659
|
+
"host": [
|
|
2660
|
+
"{{_endpoint}}"
|
|
2661
|
+
],
|
|
2662
|
+
"path": [
|
|
2663
|
+
"services",
|
|
2664
|
+
"data",
|
|
2665
|
+
"v{{version}}",
|
|
2666
|
+
"tooling",
|
|
2667
|
+
"sobjects",
|
|
2668
|
+
"ManagedEventSubscription",
|
|
2669
|
+
":managedEventSubscriptionId"
|
|
2670
|
+
],
|
|
2671
|
+
"variable": [
|
|
2672
|
+
{
|
|
2673
|
+
"key": "managedEventSubscriptionId",
|
|
2674
|
+
"value": ""
|
|
2675
|
+
}
|
|
2676
|
+
]
|
|
2677
|
+
}
|
|
2678
|
+
},
|
|
2679
|
+
"response": []
|
|
2680
|
+
}
|
|
2681
|
+
]
|
|
2682
|
+
}
|