@apteva/integrations 0.15.9 → 0.15.11
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/dist/http-executor.d.ts.map +1 -1
- package/dist/http-executor.js +62 -8
- package/dist/http-executor.js.map +1 -1
- package/dist/mcp-generator.js +24 -0
- package/dist/mcp-generator.js.map +1 -1
- package/dist/types.d.ts +4 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/apps/anthropic-admin.json +183 -0
- package/src/apps/apify.json +168 -0
- package/src/apps/aws-ses.json +1 -1
- package/src/apps/bookvault.json +309 -0
- package/src/apps/braintree.json +53 -0
- package/src/apps/brightdata.json +22 -1
- package/src/apps/browse-ai.json +243 -5
- package/src/apps/browserbase.json +41 -11
- package/src/apps/browserless.json +101 -0
- package/src/apps/bunny-stream.json +50 -28
- package/src/apps/ccbill.json +142 -0
- package/src/apps/close.json +238 -301
- package/src/apps/craftcloud.json +251 -202
- package/src/apps/dataforseo.json +1700 -2
- package/src/apps/deepgram.json +288 -1
- package/src/apps/digitalocean.json +53 -0
- package/src/apps/elevenlabs.json +292 -0
- package/src/apps/firecrawl.json +111 -0
- package/src/apps/gladia.json +158 -0
- package/src/apps/gmail.json +2 -5
- package/src/apps/gumroad.json +569 -0
- package/src/apps/imaterialise.json +171 -262
- package/src/apps/ingram-coresource.json +119 -0
- package/src/apps/jlcpcb.json +43 -0
- package/src/apps/jungle-scout.json +166 -0
- package/src/apps/ko-fi.json +34 -0
- package/src/apps/lemon-squeezy.json +270 -0
- package/src/apps/lulu-print.json +266 -0
- package/src/apps/mollie.json +219 -0
- package/src/apps/paddle.json +199 -9
- package/src/apps/payhip.json +162 -0
- package/src/apps/paystack.json +207 -0
- package/src/apps/pipedrive.json +221 -212
- package/src/apps/publishdrive.json +132 -0
- package/src/apps/razorpay.json +207 -0
- package/src/apps/ringover.json +69 -0
- package/src/apps/runpod.json +727 -0
- package/src/apps/salesforce-crm.json +192 -233
- package/src/apps/sculpteo.json +98 -180
- package/src/apps/segpay.json +215 -0
- package/src/apps/shapeways.json +114 -136
- package/src/apps/slant3d.json +260 -168
- package/src/apps/soniox.json +194 -0
- package/src/apps/speechmatics.json +167 -0
- package/src/apps/streetlib.json +60 -0
- package/src/apps/stripe.json +1 -0
- package/src/apps/surfer.json +511 -0
- package/src/apps/twitter-api.json +14 -1
- package/src/apps/verotel.json +124 -0
- package/src/apps/whop.json +364 -0
- package/src/apps/zendesk-sell.json +248 -0
- package/src/apps/zendesk.json +190 -259
|
@@ -1,267 +1,226 @@
|
|
|
1
1
|
{
|
|
2
2
|
"slug": "salesforce-crm",
|
|
3
3
|
"name": "Salesforce",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "Salesforce REST API for CRM and custom object work: SOQL/SOSL, object metadata, records, bulk-style composite calls, limits, and change windows.",
|
|
5
5
|
"logo": "https://www.google.com/s2/favicons?domain=www.salesforce.com&sz=128",
|
|
6
|
-
"categories": [
|
|
7
|
-
|
|
8
|
-
"crm",
|
|
9
|
-
"sales",
|
|
10
|
-
"leads",
|
|
11
|
-
"opportunities",
|
|
12
|
-
"accounts"
|
|
13
|
-
],
|
|
14
|
-
"base_url": "{{instance_url}}/services/data/v60.0",
|
|
6
|
+
"categories": ["salesforce", "crm", "sales", "leads", "opportunities", "accounts"],
|
|
7
|
+
"base_url": "{{instanceUrl}}/services/data/v60.0",
|
|
15
8
|
"auth": {
|
|
16
|
-
"types": [
|
|
17
|
-
"bearer",
|
|
18
|
-
"oauth2"
|
|
19
|
-
],
|
|
9
|
+
"types": ["bearer", "oauth2"],
|
|
20
10
|
"headers": {
|
|
21
|
-
"Authorization": "Bearer {{
|
|
11
|
+
"Authorization": "Bearer {{accessToken}}"
|
|
22
12
|
},
|
|
23
13
|
"credential_fields": [
|
|
24
|
-
{
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "refreshToken",
|
|
34
|
-
"label": "refreshToken"
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"name": "id",
|
|
38
|
-
"label": "id"
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"name": "tokenType",
|
|
42
|
-
"label": "tokenType"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"name": "issuedAt",
|
|
46
|
-
"label": "issuedAt"
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"name": "signature",
|
|
50
|
-
"label": "signature"
|
|
51
|
-
}
|
|
14
|
+
{"name": "accessToken", "label": "Access Token", "type": "password"},
|
|
15
|
+
{"name": "instanceUrl", "label": "Instance URL"},
|
|
16
|
+
{"name": "refreshToken", "label": "Refresh Token", "type": "password"},
|
|
17
|
+
{"name": "id", "label": "Identity URL"},
|
|
18
|
+
{"name": "tokenType", "label": "Token Type"},
|
|
19
|
+
{"name": "issuedAt", "label": "Issued At"},
|
|
20
|
+
{"name": "signature", "label": "Signature", "type": "password"}
|
|
52
21
|
],
|
|
53
22
|
"oauth2": {
|
|
54
23
|
"authorize_url": "https://login.salesforce.com/services/oauth2/authorize",
|
|
55
24
|
"token_url": "https://login.salesforce.com/services/oauth2/token",
|
|
56
|
-
"scopes": [
|
|
57
|
-
"api",
|
|
58
|
-
"refresh_token",
|
|
59
|
-
"offline_access",
|
|
60
|
-
"openid",
|
|
61
|
-
"profile",
|
|
62
|
-
"email",
|
|
63
|
-
"address",
|
|
64
|
-
"phone",
|
|
65
|
-
"full",
|
|
66
|
-
"chatter_api",
|
|
67
|
-
"custom_permissions",
|
|
68
|
-
"wave_api",
|
|
69
|
-
"cdp_query_api",
|
|
70
|
-
"cdp_profile_api",
|
|
71
|
-
"lightning",
|
|
72
|
-
"content",
|
|
73
|
-
"visualforce",
|
|
74
|
-
"web"
|
|
75
|
-
],
|
|
25
|
+
"scopes": ["api", "refresh_token", "offline_access", "openid", "profile", "email"],
|
|
76
26
|
"client_id_required": true,
|
|
77
27
|
"pkce": false
|
|
78
28
|
}
|
|
79
29
|
},
|
|
30
|
+
"health_check": {
|
|
31
|
+
"tool": "get_limits"
|
|
32
|
+
},
|
|
80
33
|
"tools": [
|
|
81
34
|
{
|
|
82
|
-
"name": "
|
|
83
|
-
"description": "
|
|
84
|
-
"method": "
|
|
85
|
-
"path": "/
|
|
86
|
-
"input_schema": {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
},
|
|
118
|
-
"required": [
|
|
119
|
-
"last_name",
|
|
120
|
-
"company"
|
|
121
|
-
]
|
|
122
|
-
}
|
|
35
|
+
"name": "get_resources",
|
|
36
|
+
"description": "List top-level Salesforce REST resources available for this API version.",
|
|
37
|
+
"method": "GET",
|
|
38
|
+
"path": "/",
|
|
39
|
+
"input_schema": {"type": "object", "properties": {}}
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "get_limits",
|
|
43
|
+
"description": "Get current org API limits and remaining quota.",
|
|
44
|
+
"method": "GET",
|
|
45
|
+
"path": "/limits",
|
|
46
|
+
"input_schema": {"type": "object", "properties": {}}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "list_objects",
|
|
50
|
+
"description": "List available standard and custom objects with metadata links.",
|
|
51
|
+
"method": "GET",
|
|
52
|
+
"path": "/sobjects",
|
|
53
|
+
"input_schema": {"type": "object", "properties": {}}
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "get_object_basic_info",
|
|
57
|
+
"description": "Get basic metadata URLs for one object, for example Lead, Account, Contact, Opportunity, Case, Task, or a custom object API name.",
|
|
58
|
+
"method": "GET",
|
|
59
|
+
"path": "/sobjects/{objectName}",
|
|
60
|
+
"path_params": ["objectName"],
|
|
61
|
+
"input_schema": {"type": "object", "properties": {"objectName": {"type": "string"}}, "required": ["objectName"]}
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "describe_object",
|
|
65
|
+
"description": "Describe fields, record types, picklists, child relationships, createability, updateability, and searchability for an object.",
|
|
66
|
+
"method": "GET",
|
|
67
|
+
"path": "/sobjects/{objectName}/describe",
|
|
68
|
+
"path_params": ["objectName"],
|
|
69
|
+
"input_schema": {"type": "object", "properties": {"objectName": {"type": "string"}}, "required": ["objectName"]}
|
|
123
70
|
},
|
|
124
71
|
{
|
|
125
72
|
"name": "query_records",
|
|
126
|
-
"description": "
|
|
73
|
+
"description": "Run a SOQL query. Example: SELECT Id, Name FROM Account LIMIT 10.",
|
|
74
|
+
"method": "GET",
|
|
75
|
+
"path": "/query",
|
|
76
|
+
"query_params": ["soql"],
|
|
77
|
+
"query_param_aliases": {"soql": "q"},
|
|
78
|
+
"input_schema": {"type": "object", "properties": {"soql": {"type": "string"}}, "required": ["soql"]}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "query_all_records",
|
|
82
|
+
"description": "Run a SOQL query including deleted and archived records where Salesforce supports it.",
|
|
127
83
|
"method": "GET",
|
|
128
|
-
"path": "/
|
|
129
|
-
"
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
}
|
|
84
|
+
"path": "/queryAll",
|
|
85
|
+
"query_params": ["soql"],
|
|
86
|
+
"query_param_aliases": {"soql": "q"},
|
|
87
|
+
"input_schema": {"type": "object", "properties": {"soql": {"type": "string"}}, "required": ["soql"]}
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "search_records",
|
|
91
|
+
"description": "Run a SOSL search. Example: FIND {Acme} IN ALL FIELDS RETURNING Account(Id, Name), Contact(Id, Name).",
|
|
92
|
+
"method": "GET",
|
|
93
|
+
"path": "/search",
|
|
94
|
+
"query_params": ["sosl"],
|
|
95
|
+
"query_param_aliases": {"sosl": "q"},
|
|
96
|
+
"input_schema": {"type": "object", "properties": {"sosl": {"type": "string"}}, "required": ["sosl"]}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"name": "get_record",
|
|
100
|
+
"description": "Get one record by object API name and record ID.",
|
|
101
|
+
"method": "GET",
|
|
102
|
+
"path": "/sobjects/{objectName}/{recordId}",
|
|
103
|
+
"path_params": ["objectName", "recordId"],
|
|
104
|
+
"query_params": ["fields"],
|
|
105
|
+
"input_schema": {"type": "object", "properties": {"objectName": {"type": "string"}, "recordId": {"type": "string"}, "fields": {"type": "string", "description": "Optional comma-separated field API names."}}, "required": ["objectName", "recordId"]}
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "create_record",
|
|
109
|
+
"description": "Create any Salesforce record. Pass objectName and fields as an object using Salesforce field API names.",
|
|
110
|
+
"method": "POST",
|
|
111
|
+
"path": "/sobjects/{objectName}",
|
|
112
|
+
"path_params": ["objectName"],
|
|
113
|
+
"body_root_param": "fields",
|
|
114
|
+
"input_schema": {"type": "object", "properties": {"objectName": {"type": "string"}, "fields": {"type": "object"}}, "required": ["objectName", "fields"]}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "update_record",
|
|
118
|
+
"description": "Update any Salesforce record. Pass objectName, recordId, and fields using Salesforce field API names.",
|
|
119
|
+
"method": "PATCH",
|
|
120
|
+
"path": "/sobjects/{objectName}/{recordId}",
|
|
121
|
+
"path_params": ["objectName", "recordId"],
|
|
122
|
+
"body_root_param": "fields",
|
|
123
|
+
"input_schema": {"type": "object", "properties": {"objectName": {"type": "string"}, "recordId": {"type": "string"}, "fields": {"type": "object"}}, "required": ["objectName", "recordId", "fields"]}
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "delete_record",
|
|
127
|
+
"description": "Delete one Salesforce record.",
|
|
128
|
+
"method": "DELETE",
|
|
129
|
+
"path": "/sobjects/{objectName}/{recordId}",
|
|
130
|
+
"path_params": ["objectName", "recordId"],
|
|
131
|
+
"input_schema": {"type": "object", "properties": {"objectName": {"type": "string"}, "recordId": {"type": "string"}}, "required": ["objectName", "recordId"]}
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "get_deleted_records",
|
|
135
|
+
"description": "Get deleted record IDs for an object in a time window. start and end must be ISO timestamps accepted by Salesforce.",
|
|
136
|
+
"method": "GET",
|
|
137
|
+
"path": "/sobjects/{objectName}/deleted/",
|
|
138
|
+
"path_params": ["objectName"],
|
|
139
|
+
"query_params": ["start", "end"],
|
|
140
|
+
"input_schema": {"type": "object", "properties": {"objectName": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["objectName", "start", "end"]}
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "get_updated_records",
|
|
144
|
+
"description": "Get updated record IDs for an object in a time window. start and end must be ISO timestamps accepted by Salesforce.",
|
|
145
|
+
"method": "GET",
|
|
146
|
+
"path": "/sobjects/{objectName}/updated/",
|
|
147
|
+
"path_params": ["objectName"],
|
|
148
|
+
"query_params": ["start", "end"],
|
|
149
|
+
"input_schema": {"type": "object", "properties": {"objectName": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["objectName", "start", "end"]}
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"name": "create_lead",
|
|
153
|
+
"description": "Convenience wrapper to create a Lead. Pass Salesforce Lead fields inside fields, for example LastName, Company, Email, Phone, Status, LeadSource.",
|
|
154
|
+
"method": "POST",
|
|
155
|
+
"path": "/sobjects/Lead",
|
|
156
|
+
"body_root_param": "fields",
|
|
157
|
+
"input_schema": {"type": "object", "properties": {"fields": {"type": "object"}}, "required": ["fields"]}
|
|
159
158
|
},
|
|
160
159
|
{
|
|
161
160
|
"name": "create_account",
|
|
162
|
-
"description": "
|
|
161
|
+
"description": "Convenience wrapper to create an Account. Pass Salesforce Account fields inside fields, for example Name, Type, Industry, Phone, Website.",
|
|
162
|
+
"method": "POST",
|
|
163
|
+
"path": "/sobjects/Account",
|
|
164
|
+
"body_root_param": "fields",
|
|
165
|
+
"input_schema": {"type": "object", "properties": {"fields": {"type": "object"}}, "required": ["fields"]}
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "create_contact",
|
|
169
|
+
"description": "Convenience wrapper to create a Contact. Pass Salesforce Contact fields inside fields, for example LastName, FirstName, Email, Phone, AccountId.",
|
|
163
170
|
"method": "POST",
|
|
164
|
-
"path": "/
|
|
165
|
-
"
|
|
166
|
-
|
|
167
|
-
"properties": {
|
|
168
|
-
"name": {
|
|
169
|
-
"type": "string",
|
|
170
|
-
"description": "Account name"
|
|
171
|
-
},
|
|
172
|
-
"type": {
|
|
173
|
-
"type": "string",
|
|
174
|
-
"description": "Account type"
|
|
175
|
-
},
|
|
176
|
-
"industry": {
|
|
177
|
-
"type": "string",
|
|
178
|
-
"description": "Industry"
|
|
179
|
-
},
|
|
180
|
-
"phone": {
|
|
181
|
-
"type": "string",
|
|
182
|
-
"description": "Phone number"
|
|
183
|
-
},
|
|
184
|
-
"website": {
|
|
185
|
-
"type": "string",
|
|
186
|
-
"description": "Website URL"
|
|
187
|
-
},
|
|
188
|
-
"billing_address": {
|
|
189
|
-
"type": "object",
|
|
190
|
-
"description": "Billing address"
|
|
191
|
-
}
|
|
192
|
-
},
|
|
193
|
-
"required": [
|
|
194
|
-
"name"
|
|
195
|
-
]
|
|
196
|
-
}
|
|
171
|
+
"path": "/sobjects/Contact",
|
|
172
|
+
"body_root_param": "fields",
|
|
173
|
+
"input_schema": {"type": "object", "properties": {"fields": {"type": "object"}}, "required": ["fields"]}
|
|
197
174
|
},
|
|
198
175
|
{
|
|
199
176
|
"name": "create_opportunity",
|
|
200
|
-
"description": "
|
|
177
|
+
"description": "Convenience wrapper to create an Opportunity. Pass Salesforce Opportunity fields inside fields, for example Name, StageName, CloseDate, AccountId, Amount.",
|
|
201
178
|
"method": "POST",
|
|
202
|
-
"path": "/
|
|
203
|
-
"
|
|
204
|
-
|
|
205
|
-
"properties": {
|
|
206
|
-
"name": {
|
|
207
|
-
"type": "string",
|
|
208
|
-
"description": "Opportunity name"
|
|
209
|
-
},
|
|
210
|
-
"account_id": {
|
|
211
|
-
"type": "string",
|
|
212
|
-
"description": "Related account ID"
|
|
213
|
-
},
|
|
214
|
-
"stage_name": {
|
|
215
|
-
"type": "string",
|
|
216
|
-
"description": "Opportunity stage"
|
|
217
|
-
},
|
|
218
|
-
"close_date": {
|
|
219
|
-
"type": "string",
|
|
220
|
-
"description": "Expected close date"
|
|
221
|
-
},
|
|
222
|
-
"amount": {
|
|
223
|
-
"type": "number",
|
|
224
|
-
"description": "Opportunity amount"
|
|
225
|
-
},
|
|
226
|
-
"probability": {
|
|
227
|
-
"type": "number",
|
|
228
|
-
"description": "Probability percentage"
|
|
229
|
-
}
|
|
230
|
-
},
|
|
231
|
-
"required": [
|
|
232
|
-
"name",
|
|
233
|
-
"stage_name",
|
|
234
|
-
"close_date"
|
|
235
|
-
]
|
|
236
|
-
}
|
|
179
|
+
"path": "/sobjects/Opportunity",
|
|
180
|
+
"body_root_param": "fields",
|
|
181
|
+
"input_schema": {"type": "object", "properties": {"fields": {"type": "object"}}, "required": ["fields"]}
|
|
237
182
|
},
|
|
238
183
|
{
|
|
239
|
-
"name": "
|
|
240
|
-
"description": "
|
|
241
|
-
"method": "
|
|
242
|
-
"path": "/
|
|
243
|
-
"
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
184
|
+
"name": "composite_request",
|
|
185
|
+
"description": "Run a Salesforce Composite API request. Pass the exact body documented by Salesforce.",
|
|
186
|
+
"method": "POST",
|
|
187
|
+
"path": "/composite",
|
|
188
|
+
"body_root_param": "body",
|
|
189
|
+
"input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"name": "composite_batch",
|
|
193
|
+
"description": "Run a Salesforce Composite Batch request. Pass the exact body documented by Salesforce.",
|
|
194
|
+
"method": "POST",
|
|
195
|
+
"path": "/composite/batch",
|
|
196
|
+
"body_root_param": "body",
|
|
197
|
+
"input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"name": "composite_tree",
|
|
201
|
+
"description": "Create a tree of records for one object type. Pass objectName and the exact Salesforce tree body.",
|
|
202
|
+
"method": "POST",
|
|
203
|
+
"path": "/composite/tree/{objectName}",
|
|
204
|
+
"path_params": ["objectName"],
|
|
205
|
+
"body_root_param": "body",
|
|
206
|
+
"input_schema": {"type": "object", "properties": {"objectName": {"type": "string"}, "body": {"type": "object"}}, "required": ["objectName", "body"]}
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"name": "composite_sobjects",
|
|
210
|
+
"description": "Create, update, upsert, or delete collections of records using the Salesforce sObject Collections endpoint. Pass the exact body documented by Salesforce.",
|
|
211
|
+
"method": "POST",
|
|
212
|
+
"path": "/composite/sobjects",
|
|
213
|
+
"body_root_param": "body",
|
|
214
|
+
"input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"name": "tooling_query",
|
|
218
|
+
"description": "Run a SOQL query against the Tooling API.",
|
|
219
|
+
"method": "GET",
|
|
220
|
+
"path": "/tooling/query",
|
|
221
|
+
"query_params": ["soql"],
|
|
222
|
+
"query_param_aliases": {"soql": "q"},
|
|
223
|
+
"input_schema": {"type": "object", "properties": {"soql": {"type": "string"}}, "required": ["soql"]}
|
|
265
224
|
}
|
|
266
225
|
]
|
|
267
|
-
}
|
|
226
|
+
}
|