@apteva/integrations 0.15.10 → 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/aws-ses.json +1 -1
- package/src/apps/braintree.json +53 -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/elevenlabs.json +9 -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/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/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/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/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
|
@@ -0,0 +1,364 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "whop",
|
|
3
|
+
"name": "Whop",
|
|
4
|
+
"description": "Whop commerce API for products, plans, checkout configurations, payments, refunds, memberships, and leads. Use Whop to sell access to audio products, communities, or apps; Whop's public API does not directly upload and host audio files.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=whop.com&sz=128",
|
|
6
|
+
"categories": ["payments", "commerce", "creator-economy", "digital-products", "memberships", "checkout"],
|
|
7
|
+
"base_url": "https://api.whop.com/api/v1",
|
|
8
|
+
"auth": {
|
|
9
|
+
"types": ["bearer"],
|
|
10
|
+
"headers": {
|
|
11
|
+
"Authorization": "Bearer {{token}}",
|
|
12
|
+
"Content-Type": "application/json",
|
|
13
|
+
"Api-Version-Date": "2026-06-20"
|
|
14
|
+
},
|
|
15
|
+
"credential_fields": [
|
|
16
|
+
{
|
|
17
|
+
"name": "token",
|
|
18
|
+
"label": "API Key",
|
|
19
|
+
"description": "Whop API key for the company/app you want to manage."
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"tools": [
|
|
24
|
+
{
|
|
25
|
+
"name": "list_products",
|
|
26
|
+
"description": "List Whop products for a company. Use this before creating plans or checkout configurations.",
|
|
27
|
+
"method": "GET",
|
|
28
|
+
"path": "/products",
|
|
29
|
+
"input_schema": {
|
|
30
|
+
"type": "object",
|
|
31
|
+
"properties": {
|
|
32
|
+
"company_id": { "type": "string" },
|
|
33
|
+
"visibilities": { "type": "array", "items": { "type": "string" } },
|
|
34
|
+
"access_pass_types": { "type": "array", "items": { "type": "string" } },
|
|
35
|
+
"direction": { "type": "string" },
|
|
36
|
+
"order": { "type": "string" },
|
|
37
|
+
"first": { "type": "integer" },
|
|
38
|
+
"after": { "type": "string" },
|
|
39
|
+
"last": { "type": "integer" },
|
|
40
|
+
"before": { "type": "string" }
|
|
41
|
+
},
|
|
42
|
+
"required": ["company_id"]
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "get_product",
|
|
47
|
+
"description": "Retrieve one Whop product.",
|
|
48
|
+
"method": "GET",
|
|
49
|
+
"path": "/products/{product_id}",
|
|
50
|
+
"input_schema": {
|
|
51
|
+
"type": "object",
|
|
52
|
+
"properties": {
|
|
53
|
+
"product_id": { "type": "string" }
|
|
54
|
+
},
|
|
55
|
+
"required": ["product_id"]
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "create_product",
|
|
60
|
+
"description": "Create a Whop product. Body must follow Whop's current product create schema. For audio products, this creates the sellable access product; store the audio in your app/storage and deliver it after purchase.",
|
|
61
|
+
"method": "POST",
|
|
62
|
+
"path": "/products",
|
|
63
|
+
"body_root_param": "body",
|
|
64
|
+
"input_schema": {
|
|
65
|
+
"type": "object",
|
|
66
|
+
"properties": {
|
|
67
|
+
"body": { "type": "object", "description": "Raw Whop product create payload." }
|
|
68
|
+
},
|
|
69
|
+
"required": ["body"]
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "update_product",
|
|
74
|
+
"description": "Update a Whop product using Whop's product update schema.",
|
|
75
|
+
"method": "PATCH",
|
|
76
|
+
"path": "/products/{product_id}",
|
|
77
|
+
"body_root_param": "body",
|
|
78
|
+
"input_schema": {
|
|
79
|
+
"type": "object",
|
|
80
|
+
"properties": {
|
|
81
|
+
"product_id": { "type": "string" },
|
|
82
|
+
"body": { "type": "object", "description": "Raw Whop product update payload." }
|
|
83
|
+
},
|
|
84
|
+
"required": ["product_id", "body"]
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "delete_product",
|
|
89
|
+
"description": "Delete a Whop product.",
|
|
90
|
+
"method": "DELETE",
|
|
91
|
+
"path": "/products/{product_id}",
|
|
92
|
+
"input_schema": {
|
|
93
|
+
"type": "object",
|
|
94
|
+
"properties": {
|
|
95
|
+
"product_id": { "type": "string" }
|
|
96
|
+
},
|
|
97
|
+
"required": ["product_id"]
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "list_plans",
|
|
102
|
+
"description": "List Whop plans. Filter by company or product before creating checkout configurations.",
|
|
103
|
+
"method": "GET",
|
|
104
|
+
"path": "/plans",
|
|
105
|
+
"input_schema": {
|
|
106
|
+
"type": "object",
|
|
107
|
+
"properties": {
|
|
108
|
+
"company_id": { "type": "string" },
|
|
109
|
+
"product_id": { "type": "string" },
|
|
110
|
+
"direction": { "type": "string" },
|
|
111
|
+
"order": { "type": "string" },
|
|
112
|
+
"first": { "type": "integer" },
|
|
113
|
+
"after": { "type": "string" },
|
|
114
|
+
"last": { "type": "integer" },
|
|
115
|
+
"before": { "type": "string" }
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "get_plan",
|
|
121
|
+
"description": "Retrieve one Whop plan.",
|
|
122
|
+
"method": "GET",
|
|
123
|
+
"path": "/plans/{plan_id}",
|
|
124
|
+
"input_schema": {
|
|
125
|
+
"type": "object",
|
|
126
|
+
"properties": {
|
|
127
|
+
"plan_id": { "type": "string" }
|
|
128
|
+
},
|
|
129
|
+
"required": ["plan_id"]
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "create_plan",
|
|
134
|
+
"description": "Create a Whop plan. Body must follow Whop's plan create schema, including product/company, pricing, currency, and billing fields.",
|
|
135
|
+
"method": "POST",
|
|
136
|
+
"path": "/plans",
|
|
137
|
+
"body_root_param": "body",
|
|
138
|
+
"input_schema": {
|
|
139
|
+
"type": "object",
|
|
140
|
+
"properties": {
|
|
141
|
+
"body": { "type": "object", "description": "Raw Whop plan create payload." }
|
|
142
|
+
},
|
|
143
|
+
"required": ["body"]
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "update_plan",
|
|
148
|
+
"description": "Update a Whop plan using Whop's plan update schema.",
|
|
149
|
+
"method": "PATCH",
|
|
150
|
+
"path": "/plans/{plan_id}",
|
|
151
|
+
"body_root_param": "body",
|
|
152
|
+
"input_schema": {
|
|
153
|
+
"type": "object",
|
|
154
|
+
"properties": {
|
|
155
|
+
"plan_id": { "type": "string" },
|
|
156
|
+
"body": { "type": "object", "description": "Raw Whop plan update payload." }
|
|
157
|
+
},
|
|
158
|
+
"required": ["plan_id", "body"]
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "delete_plan",
|
|
163
|
+
"description": "Delete a Whop plan.",
|
|
164
|
+
"method": "DELETE",
|
|
165
|
+
"path": "/plans/{plan_id}",
|
|
166
|
+
"input_schema": {
|
|
167
|
+
"type": "object",
|
|
168
|
+
"properties": {
|
|
169
|
+
"plan_id": { "type": "string" }
|
|
170
|
+
},
|
|
171
|
+
"required": ["plan_id"]
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"name": "list_checkout_configurations",
|
|
176
|
+
"description": "List Whop checkout configurations, optionally filtered by company or plan.",
|
|
177
|
+
"method": "GET",
|
|
178
|
+
"path": "/checkout_configurations",
|
|
179
|
+
"input_schema": {
|
|
180
|
+
"type": "object",
|
|
181
|
+
"properties": {
|
|
182
|
+
"company_id": { "type": "string" },
|
|
183
|
+
"plan_id": { "type": "string" },
|
|
184
|
+
"direction": { "type": "string" },
|
|
185
|
+
"order": { "type": "string" },
|
|
186
|
+
"first": { "type": "integer" },
|
|
187
|
+
"after": { "type": "string" },
|
|
188
|
+
"last": { "type": "integer" },
|
|
189
|
+
"before": { "type": "string" }
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"name": "get_checkout_configuration",
|
|
195
|
+
"description": "Retrieve one Whop checkout configuration.",
|
|
196
|
+
"method": "GET",
|
|
197
|
+
"path": "/checkout_configurations/{checkout_configuration_id}",
|
|
198
|
+
"input_schema": {
|
|
199
|
+
"type": "object",
|
|
200
|
+
"properties": {
|
|
201
|
+
"checkout_configuration_id": { "type": "string" }
|
|
202
|
+
},
|
|
203
|
+
"required": ["checkout_configuration_id"]
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"name": "create_checkout_configuration",
|
|
208
|
+
"description": "Create a Whop checkout configuration. Use the returned checkout configuration data/link in your app or agent flow to sell a plan.",
|
|
209
|
+
"method": "POST",
|
|
210
|
+
"path": "/checkout_configurations",
|
|
211
|
+
"body_root_param": "body",
|
|
212
|
+
"input_schema": {
|
|
213
|
+
"type": "object",
|
|
214
|
+
"properties": {
|
|
215
|
+
"body": { "type": "object", "description": "Raw Whop checkout configuration create payload." }
|
|
216
|
+
},
|
|
217
|
+
"required": ["body"]
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "delete_checkout_configuration",
|
|
222
|
+
"description": "Delete a Whop checkout configuration.",
|
|
223
|
+
"method": "DELETE",
|
|
224
|
+
"path": "/checkout_configurations/{checkout_configuration_id}",
|
|
225
|
+
"input_schema": {
|
|
226
|
+
"type": "object",
|
|
227
|
+
"properties": {
|
|
228
|
+
"checkout_configuration_id": { "type": "string" }
|
|
229
|
+
},
|
|
230
|
+
"required": ["checkout_configuration_id"]
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"name": "list_payments",
|
|
235
|
+
"description": "List Whop payments for reconciliation, customer support, and fulfillment checks.",
|
|
236
|
+
"method": "GET",
|
|
237
|
+
"path": "/payments",
|
|
238
|
+
"input_schema": {
|
|
239
|
+
"type": "object",
|
|
240
|
+
"properties": {
|
|
241
|
+
"company_id": { "type": "string" },
|
|
242
|
+
"product_id": { "type": "string" },
|
|
243
|
+
"plan_id": { "type": "string" },
|
|
244
|
+
"membership_id": { "type": "string" },
|
|
245
|
+
"status": { "type": "string" },
|
|
246
|
+
"direction": { "type": "string" },
|
|
247
|
+
"order": { "type": "string" },
|
|
248
|
+
"first": { "type": "integer" },
|
|
249
|
+
"after": { "type": "string" },
|
|
250
|
+
"last": { "type": "integer" },
|
|
251
|
+
"before": { "type": "string" }
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"name": "get_payment",
|
|
257
|
+
"description": "Retrieve one Whop payment.",
|
|
258
|
+
"method": "GET",
|
|
259
|
+
"path": "/payments/{payment_id}",
|
|
260
|
+
"input_schema": {
|
|
261
|
+
"type": "object",
|
|
262
|
+
"properties": {
|
|
263
|
+
"payment_id": { "type": "string" }
|
|
264
|
+
},
|
|
265
|
+
"required": ["payment_id"]
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"name": "create_payment",
|
|
270
|
+
"description": "Create a Whop payment using Whop's payment create schema when your Whop app flow requires server-side payment creation.",
|
|
271
|
+
"method": "POST",
|
|
272
|
+
"path": "/payments",
|
|
273
|
+
"body_root_param": "body",
|
|
274
|
+
"input_schema": {
|
|
275
|
+
"type": "object",
|
|
276
|
+
"properties": {
|
|
277
|
+
"body": { "type": "object", "description": "Raw Whop payment create payload." }
|
|
278
|
+
},
|
|
279
|
+
"required": ["body"]
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"name": "refund_payment",
|
|
284
|
+
"description": "Refund a Whop payment. Body may include provider-supported refund fields such as amount, reason, or metadata.",
|
|
285
|
+
"method": "POST",
|
|
286
|
+
"path": "/payments/{payment_id}/refund",
|
|
287
|
+
"body_root_param": "body",
|
|
288
|
+
"input_schema": {
|
|
289
|
+
"type": "object",
|
|
290
|
+
"properties": {
|
|
291
|
+
"payment_id": { "type": "string" },
|
|
292
|
+
"body": { "type": "object", "description": "Raw Whop refund payload." }
|
|
293
|
+
},
|
|
294
|
+
"required": ["payment_id", "body"]
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"name": "list_memberships",
|
|
299
|
+
"description": "List Whop memberships for fulfillment and access checks.",
|
|
300
|
+
"method": "GET",
|
|
301
|
+
"path": "/memberships",
|
|
302
|
+
"input_schema": {
|
|
303
|
+
"type": "object",
|
|
304
|
+
"properties": {
|
|
305
|
+
"company_id": { "type": "string" },
|
|
306
|
+
"product_id": { "type": "string" },
|
|
307
|
+
"user_id": { "type": "string" },
|
|
308
|
+
"status": { "type": "string" },
|
|
309
|
+
"direction": { "type": "string" },
|
|
310
|
+
"order": { "type": "string" },
|
|
311
|
+
"first": { "type": "integer" },
|
|
312
|
+
"after": { "type": "string" },
|
|
313
|
+
"last": { "type": "integer" },
|
|
314
|
+
"before": { "type": "string" }
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"name": "get_membership",
|
|
320
|
+
"description": "Retrieve one Whop membership.",
|
|
321
|
+
"method": "GET",
|
|
322
|
+
"path": "/memberships/{membership_id}",
|
|
323
|
+
"input_schema": {
|
|
324
|
+
"type": "object",
|
|
325
|
+
"properties": {
|
|
326
|
+
"membership_id": { "type": "string" }
|
|
327
|
+
},
|
|
328
|
+
"required": ["membership_id"]
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"name": "list_leads",
|
|
333
|
+
"description": "List Whop leads captured for a company or product.",
|
|
334
|
+
"method": "GET",
|
|
335
|
+
"path": "/leads",
|
|
336
|
+
"input_schema": {
|
|
337
|
+
"type": "object",
|
|
338
|
+
"properties": {
|
|
339
|
+
"company_id": { "type": "string" },
|
|
340
|
+
"product_id": { "type": "string" },
|
|
341
|
+
"direction": { "type": "string" },
|
|
342
|
+
"order": { "type": "string" },
|
|
343
|
+
"first": { "type": "integer" },
|
|
344
|
+
"after": { "type": "string" },
|
|
345
|
+
"last": { "type": "integer" },
|
|
346
|
+
"before": { "type": "string" }
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"name": "get_lead",
|
|
352
|
+
"description": "Retrieve one Whop lead.",
|
|
353
|
+
"method": "GET",
|
|
354
|
+
"path": "/leads/{lead_id}",
|
|
355
|
+
"input_schema": {
|
|
356
|
+
"type": "object",
|
|
357
|
+
"properties": {
|
|
358
|
+
"lead_id": { "type": "string" }
|
|
359
|
+
},
|
|
360
|
+
"required": ["lead_id"]
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
]
|
|
364
|
+
}
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "zendesk-sell",
|
|
3
|
+
"name": "Zendesk Sell",
|
|
4
|
+
"description": "Zendesk Sell CRM API for leads, contacts, deals, tasks, notes, pipelines, stages, users, sources, loss reasons, and custom fields.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=zendesk.com&sz=128",
|
|
6
|
+
"categories": ["crm", "zendesk", "sell", "deals", "sales"],
|
|
7
|
+
"base_url": "https://api.getbase.com/v2",
|
|
8
|
+
"auth": {
|
|
9
|
+
"types": ["bearer"],
|
|
10
|
+
"headers": {
|
|
11
|
+
"Authorization": "Bearer {{token}}"
|
|
12
|
+
},
|
|
13
|
+
"credential_fields": [
|
|
14
|
+
{
|
|
15
|
+
"name": "token",
|
|
16
|
+
"label": "Access Token",
|
|
17
|
+
"type": "password",
|
|
18
|
+
"description": "Zendesk Sell OAuth access token or personal access token with CRM permissions."
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"health_check": {
|
|
23
|
+
"tool": "list_users"
|
|
24
|
+
},
|
|
25
|
+
"tools": [
|
|
26
|
+
{
|
|
27
|
+
"name": "list_leads",
|
|
28
|
+
"description": "List Zendesk Sell leads.",
|
|
29
|
+
"method": "GET",
|
|
30
|
+
"path": "/leads",
|
|
31
|
+
"query_params": ["page", "per_page", "sort_by", "sort_order", "ids", "email", "phone", "name", "query", "owner_id", "creator_id", "status"],
|
|
32
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "sort_by": {"type": "string"}, "sort_order": {"type": "string"}, "ids": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "name": {"type": "string"}, "query": {"type": "string"}, "owner_id": {"type": "number"}, "creator_id": {"type": "number"}, "status": {"type": "string"}}}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "get_lead",
|
|
36
|
+
"description": "Get one Zendesk Sell lead by ID.",
|
|
37
|
+
"method": "GET",
|
|
38
|
+
"path": "/leads/{leadId}",
|
|
39
|
+
"path_params": ["leadId"],
|
|
40
|
+
"input_schema": {"type": "object", "properties": {"leadId": {"type": "number"}}, "required": ["leadId"]}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "create_lead",
|
|
44
|
+
"description": "Create a lead. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
|
|
45
|
+
"method": "POST",
|
|
46
|
+
"path": "/leads",
|
|
47
|
+
"body_root_param": "body",
|
|
48
|
+
"input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "update_lead",
|
|
52
|
+
"description": "Update a lead. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
|
|
53
|
+
"method": "PUT",
|
|
54
|
+
"path": "/leads/{leadId}",
|
|
55
|
+
"path_params": ["leadId"],
|
|
56
|
+
"body_root_param": "body",
|
|
57
|
+
"input_schema": {"type": "object", "properties": {"leadId": {"type": "number"}, "body": {"type": "object"}}, "required": ["leadId", "body"]}
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "delete_lead",
|
|
61
|
+
"description": "Delete one lead by ID.",
|
|
62
|
+
"method": "DELETE",
|
|
63
|
+
"path": "/leads/{leadId}",
|
|
64
|
+
"path_params": ["leadId"],
|
|
65
|
+
"input_schema": {"type": "object", "properties": {"leadId": {"type": "number"}}, "required": ["leadId"]}
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "list_contacts",
|
|
69
|
+
"description": "List Zendesk Sell contacts, including people and companies.",
|
|
70
|
+
"method": "GET",
|
|
71
|
+
"path": "/contacts",
|
|
72
|
+
"query_params": ["page", "per_page", "sort_by", "sort_order", "ids", "email", "phone", "name", "query", "owner_id", "creator_id", "is_organization"],
|
|
73
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "sort_by": {"type": "string"}, "sort_order": {"type": "string"}, "ids": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "name": {"type": "string"}, "query": {"type": "string"}, "owner_id": {"type": "number"}, "creator_id": {"type": "number"}, "is_organization": {"type": "boolean"}}}
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "get_contact",
|
|
77
|
+
"description": "Get one contact by ID.",
|
|
78
|
+
"method": "GET",
|
|
79
|
+
"path": "/contacts/{contactId}",
|
|
80
|
+
"path_params": ["contactId"],
|
|
81
|
+
"input_schema": {"type": "object", "properties": {"contactId": {"type": "number"}}, "required": ["contactId"]}
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "create_contact",
|
|
85
|
+
"description": "Create a contact. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
|
|
86
|
+
"method": "POST",
|
|
87
|
+
"path": "/contacts",
|
|
88
|
+
"body_root_param": "body",
|
|
89
|
+
"input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "update_contact",
|
|
93
|
+
"description": "Update a contact. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
|
|
94
|
+
"method": "PUT",
|
|
95
|
+
"path": "/contacts/{contactId}",
|
|
96
|
+
"path_params": ["contactId"],
|
|
97
|
+
"body_root_param": "body",
|
|
98
|
+
"input_schema": {"type": "object", "properties": {"contactId": {"type": "number"}, "body": {"type": "object"}}, "required": ["contactId", "body"]}
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "delete_contact",
|
|
102
|
+
"description": "Delete one contact by ID.",
|
|
103
|
+
"method": "DELETE",
|
|
104
|
+
"path": "/contacts/{contactId}",
|
|
105
|
+
"path_params": ["contactId"],
|
|
106
|
+
"input_schema": {"type": "object", "properties": {"contactId": {"type": "number"}}, "required": ["contactId"]}
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "list_deals",
|
|
110
|
+
"description": "List Zendesk Sell deals.",
|
|
111
|
+
"method": "GET",
|
|
112
|
+
"path": "/deals",
|
|
113
|
+
"query_params": ["page", "per_page", "sort_by", "sort_order", "ids", "name", "query", "owner_id", "creator_id", "contact_id", "organization_id", "pipeline_id", "stage_id", "status"],
|
|
114
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "sort_by": {"type": "string"}, "sort_order": {"type": "string"}, "ids": {"type": "string"}, "name": {"type": "string"}, "query": {"type": "string"}, "owner_id": {"type": "number"}, "creator_id": {"type": "number"}, "contact_id": {"type": "number"}, "organization_id": {"type": "number"}, "pipeline_id": {"type": "number"}, "stage_id": {"type": "number"}, "status": {"type": "string"}}}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "get_deal",
|
|
118
|
+
"description": "Get one deal by ID.",
|
|
119
|
+
"method": "GET",
|
|
120
|
+
"path": "/deals/{dealId}",
|
|
121
|
+
"path_params": ["dealId"],
|
|
122
|
+
"input_schema": {"type": "object", "properties": {"dealId": {"type": "number"}}, "required": ["dealId"]}
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "create_deal",
|
|
126
|
+
"description": "Create a deal. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
|
|
127
|
+
"method": "POST",
|
|
128
|
+
"path": "/deals",
|
|
129
|
+
"body_root_param": "body",
|
|
130
|
+
"input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "update_deal",
|
|
134
|
+
"description": "Update a deal. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
|
|
135
|
+
"method": "PUT",
|
|
136
|
+
"path": "/deals/{dealId}",
|
|
137
|
+
"path_params": ["dealId"],
|
|
138
|
+
"body_root_param": "body",
|
|
139
|
+
"input_schema": {"type": "object", "properties": {"dealId": {"type": "number"}, "body": {"type": "object"}}, "required": ["dealId", "body"]}
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "delete_deal",
|
|
143
|
+
"description": "Delete one deal by ID.",
|
|
144
|
+
"method": "DELETE",
|
|
145
|
+
"path": "/deals/{dealId}",
|
|
146
|
+
"path_params": ["dealId"],
|
|
147
|
+
"input_schema": {"type": "object", "properties": {"dealId": {"type": "number"}}, "required": ["dealId"]}
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "list_tasks",
|
|
151
|
+
"description": "List Zendesk Sell tasks.",
|
|
152
|
+
"method": "GET",
|
|
153
|
+
"path": "/tasks",
|
|
154
|
+
"query_params": ["page", "per_page", "sort_by", "sort_order", "ids", "owner_id", "creator_id", "lead_id", "contact_id", "deal_id", "completed"],
|
|
155
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "sort_by": {"type": "string"}, "sort_order": {"type": "string"}, "ids": {"type": "string"}, "owner_id": {"type": "number"}, "creator_id": {"type": "number"}, "lead_id": {"type": "number"}, "contact_id": {"type": "number"}, "deal_id": {"type": "number"}, "completed": {"type": "boolean"}}}
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"name": "create_task",
|
|
159
|
+
"description": "Create a task. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
|
|
160
|
+
"method": "POST",
|
|
161
|
+
"path": "/tasks",
|
|
162
|
+
"body_root_param": "body",
|
|
163
|
+
"input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "update_task",
|
|
167
|
+
"description": "Update a task. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
|
|
168
|
+
"method": "PUT",
|
|
169
|
+
"path": "/tasks/{taskId}",
|
|
170
|
+
"path_params": ["taskId"],
|
|
171
|
+
"body_root_param": "body",
|
|
172
|
+
"input_schema": {"type": "object", "properties": {"taskId": {"type": "number"}, "body": {"type": "object"}}, "required": ["taskId", "body"]}
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"name": "delete_task",
|
|
176
|
+
"description": "Delete one task by ID.",
|
|
177
|
+
"method": "DELETE",
|
|
178
|
+
"path": "/tasks/{taskId}",
|
|
179
|
+
"path_params": ["taskId"],
|
|
180
|
+
"input_schema": {"type": "object", "properties": {"taskId": {"type": "number"}}, "required": ["taskId"]}
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"name": "list_notes",
|
|
184
|
+
"description": "List notes, optionally filtered by lead, contact, deal, or owner.",
|
|
185
|
+
"method": "GET",
|
|
186
|
+
"path": "/notes",
|
|
187
|
+
"query_params": ["page", "per_page", "sort_by", "sort_order", "owner_id", "creator_id", "lead_id", "contact_id", "deal_id"],
|
|
188
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "sort_by": {"type": "string"}, "sort_order": {"type": "string"}, "owner_id": {"type": "number"}, "creator_id": {"type": "number"}, "lead_id": {"type": "number"}, "contact_id": {"type": "number"}, "deal_id": {"type": "number"}}}
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"name": "create_note",
|
|
192
|
+
"description": "Create a note. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
|
|
193
|
+
"method": "POST",
|
|
194
|
+
"path": "/notes",
|
|
195
|
+
"body_root_param": "body",
|
|
196
|
+
"input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "list_pipelines",
|
|
200
|
+
"description": "List pipelines.",
|
|
201
|
+
"method": "GET",
|
|
202
|
+
"path": "/pipelines",
|
|
203
|
+
"query_params": ["page", "per_page"],
|
|
204
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}}
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"name": "list_stages",
|
|
208
|
+
"description": "List stages, optionally filtered by pipeline.",
|
|
209
|
+
"method": "GET",
|
|
210
|
+
"path": "/stages",
|
|
211
|
+
"query_params": ["page", "per_page", "pipeline_id"],
|
|
212
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "pipeline_id": {"type": "number"}}}
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"name": "list_users",
|
|
216
|
+
"description": "List Zendesk Sell users.",
|
|
217
|
+
"method": "GET",
|
|
218
|
+
"path": "/users",
|
|
219
|
+
"query_params": ["page", "per_page"],
|
|
220
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}}
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"name": "list_sources",
|
|
224
|
+
"description": "List lead/deal sources.",
|
|
225
|
+
"method": "GET",
|
|
226
|
+
"path": "/sources",
|
|
227
|
+
"query_params": ["page", "per_page"],
|
|
228
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}}
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"name": "list_loss_reasons",
|
|
232
|
+
"description": "List configured deal loss reasons.",
|
|
233
|
+
"method": "GET",
|
|
234
|
+
"path": "/loss_reasons",
|
|
235
|
+
"query_params": ["page", "per_page"],
|
|
236
|
+
"input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}}
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"name": "list_custom_fields",
|
|
240
|
+
"description": "List custom fields for a resource type, for example leads, contacts, deals, tasks, or notes.",
|
|
241
|
+
"method": "GET",
|
|
242
|
+
"path": "/custom_fields/{resource}",
|
|
243
|
+
"path_params": ["resource"],
|
|
244
|
+
"query_params": ["page", "per_page"],
|
|
245
|
+
"input_schema": {"type": "object", "properties": {"resource": {"type": "string"}, "page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}, "required": ["resource"]}
|
|
246
|
+
}
|
|
247
|
+
]
|
|
248
|
+
}
|