@keemakr/agent-sdk 0.11.0 → 0.12.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/dist/connectors.generated.d.ts +2470 -83
- package/dist/connectors.generated.js +2789 -85
- package/package.json +1 -1
|
@@ -55,6 +55,269 @@ export const connectors = {
|
|
|
55
55
|
"docUrl": "https://developer.drip.com/",
|
|
56
56
|
"ops": {}
|
|
57
57
|
},
|
|
58
|
+
"dropbox": {
|
|
59
|
+
"displayName": "Dropbox",
|
|
60
|
+
"authKind": "oauth2",
|
|
61
|
+
"category": "storage",
|
|
62
|
+
"maturity": "ready",
|
|
63
|
+
"docUrl": "https://www.dropbox.com/developers/documentation/http/documentation",
|
|
64
|
+
"ops": {
|
|
65
|
+
"folders.list": {
|
|
66
|
+
"description": "List child folders (id + name) under a parent, for the sync folder picker.",
|
|
67
|
+
"inputSchema": {
|
|
68
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
69
|
+
"type": "object",
|
|
70
|
+
"properties": {
|
|
71
|
+
"parent_id": {
|
|
72
|
+
"description": "Parent folder id ('id:' form); omit for the account root.",
|
|
73
|
+
"type": "string"
|
|
74
|
+
},
|
|
75
|
+
"cursor": {
|
|
76
|
+
"description": "Continuation cursor from a previous page.",
|
|
77
|
+
"type": "string"
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"files.list": {
|
|
83
|
+
"description": "List files inside a folder, optionally including descendants — metadata only (id, name, size, modified, content_hash revision). No content is fetched.",
|
|
84
|
+
"inputSchema": {
|
|
85
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
86
|
+
"type": "object",
|
|
87
|
+
"properties": {
|
|
88
|
+
"folder_id": {
|
|
89
|
+
"type": "string",
|
|
90
|
+
"minLength": 1,
|
|
91
|
+
"description": "The folder to list ('id:' form; '' is not accepted here — pick a folder)."
|
|
92
|
+
},
|
|
93
|
+
"cursor": {
|
|
94
|
+
"description": "Continuation cursor from a previous page.",
|
|
95
|
+
"type": "string"
|
|
96
|
+
},
|
|
97
|
+
"recursive": {
|
|
98
|
+
"default": false,
|
|
99
|
+
"description": "Include files in every descendant folder.",
|
|
100
|
+
"type": "boolean"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"required": [
|
|
104
|
+
"folder_id"
|
|
105
|
+
]
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"files.download": {
|
|
109
|
+
"description": "Download one file (base64), size-checked from metadata BEFORE buffering.",
|
|
110
|
+
"inputSchema": {
|
|
111
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
112
|
+
"type": "object",
|
|
113
|
+
"properties": {
|
|
114
|
+
"file_id": {
|
|
115
|
+
"type": "string",
|
|
116
|
+
"minLength": 1,
|
|
117
|
+
"description": "The Dropbox file id ('id:' form)."
|
|
118
|
+
},
|
|
119
|
+
"max_bytes": {
|
|
120
|
+
"type": "integer",
|
|
121
|
+
"minimum": 1,
|
|
122
|
+
"maximum": 9007199254740991,
|
|
123
|
+
"description": "Hard size cap; larger files raise too_large WITHOUT buffering."
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"required": [
|
|
127
|
+
"file_id",
|
|
128
|
+
"max_bytes"
|
|
129
|
+
]
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"files.get": {
|
|
133
|
+
"description": "Metadata for one file (id, name, size, modified, revision).",
|
|
134
|
+
"inputSchema": {
|
|
135
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
136
|
+
"type": "object",
|
|
137
|
+
"properties": {
|
|
138
|
+
"file_id": {
|
|
139
|
+
"type": "string",
|
|
140
|
+
"minLength": 1,
|
|
141
|
+
"description": "The Dropbox file id ('id:' form)."
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"required": [
|
|
145
|
+
"file_id"
|
|
146
|
+
]
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
"files.search": {
|
|
150
|
+
"description": "Search files by name/content, optionally modified after a timestamp. Metadata only.",
|
|
151
|
+
"inputSchema": {
|
|
152
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
153
|
+
"type": "object",
|
|
154
|
+
"properties": {
|
|
155
|
+
"query": {
|
|
156
|
+
"type": "string",
|
|
157
|
+
"minLength": 1,
|
|
158
|
+
"description": "Matched against file names and content."
|
|
159
|
+
},
|
|
160
|
+
"modified_after": {
|
|
161
|
+
"description": "ISO timestamp; only files modified after this instant (filtered client-side).",
|
|
162
|
+
"type": "string"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"required": [
|
|
166
|
+
"query"
|
|
167
|
+
]
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"changes.list": {
|
|
171
|
+
"description": "Incremental changes since a cursor (account-wide, recursive). No cursor ⇒ initialize (fresh cursor, zero changes). A reset cursor raises status 410 (cursor_invalid); re-initialize.",
|
|
172
|
+
"inputSchema": {
|
|
173
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
174
|
+
"type": "object",
|
|
175
|
+
"properties": {
|
|
176
|
+
"cursor": {
|
|
177
|
+
"description": "Change cursor from a previous call. Omit to INITIALIZE: returns no changes, just a fresh cursor.",
|
|
178
|
+
"type": "string"
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
"files.upload": {
|
|
184
|
+
"description": "Create a file (collision ⇒ conflict, never a silent replace), or with overwrite_file_id REPLACE that file’s content — guarded by Dropbox’s atomic rev precondition when a revision is supplied.",
|
|
185
|
+
"inputSchema": {
|
|
186
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
187
|
+
"type": "object",
|
|
188
|
+
"properties": {
|
|
189
|
+
"folder_id": {
|
|
190
|
+
"description": "Target folder id ('id:' form); omit for the root.",
|
|
191
|
+
"type": "string"
|
|
192
|
+
},
|
|
193
|
+
"name": {
|
|
194
|
+
"type": "string",
|
|
195
|
+
"minLength": 1,
|
|
196
|
+
"description": "File name at the target."
|
|
197
|
+
},
|
|
198
|
+
"content_base64": {
|
|
199
|
+
"type": "string",
|
|
200
|
+
"minLength": 1,
|
|
201
|
+
"description": "File content, base64-encoded."
|
|
202
|
+
},
|
|
203
|
+
"mime_type": {
|
|
204
|
+
"description": "Ignored by Dropbox (kept for contract parity).",
|
|
205
|
+
"type": "string"
|
|
206
|
+
},
|
|
207
|
+
"overwrite_file_id": {
|
|
208
|
+
"description": "OVERWRITE mode: replace the content of this existing file id.",
|
|
209
|
+
"type": "string"
|
|
210
|
+
},
|
|
211
|
+
"revision": {
|
|
212
|
+
"description": "With overwrite_file_id: the revision the caller last saw; a mismatch aborts (conflict).",
|
|
213
|
+
"type": "string"
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"required": [
|
|
217
|
+
"name",
|
|
218
|
+
"content_base64"
|
|
219
|
+
]
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"files.move": {
|
|
223
|
+
"description": "Move a file to another folder and/or rename it.",
|
|
224
|
+
"inputSchema": {
|
|
225
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
226
|
+
"type": "object",
|
|
227
|
+
"properties": {
|
|
228
|
+
"file_id": {
|
|
229
|
+
"type": "string",
|
|
230
|
+
"minLength": 1,
|
|
231
|
+
"description": "The file to move and/or rename."
|
|
232
|
+
},
|
|
233
|
+
"new_parent_id": {
|
|
234
|
+
"description": "Destination folder id (omit to keep).",
|
|
235
|
+
"type": "string"
|
|
236
|
+
},
|
|
237
|
+
"new_name": {
|
|
238
|
+
"description": "New file name (omit to keep).",
|
|
239
|
+
"type": "string"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"required": [
|
|
243
|
+
"file_id"
|
|
244
|
+
]
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
"folders.create": {
|
|
248
|
+
"description": "Create a folder under a parent.",
|
|
249
|
+
"inputSchema": {
|
|
250
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
251
|
+
"type": "object",
|
|
252
|
+
"properties": {
|
|
253
|
+
"parent_id": {
|
|
254
|
+
"description": "Parent folder id ('id:' form); omit for the root.",
|
|
255
|
+
"type": "string"
|
|
256
|
+
},
|
|
257
|
+
"name": {
|
|
258
|
+
"type": "string",
|
|
259
|
+
"minLength": 1,
|
|
260
|
+
"description": "Folder name."
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"required": [
|
|
264
|
+
"name"
|
|
265
|
+
]
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"files.trash": {
|
|
269
|
+
"description": "Delete a file — recoverable within the Dropbox plan’s retention window (Dropbox has no separate trash endpoint); never a permanent purge.",
|
|
270
|
+
"inputSchema": {
|
|
271
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
272
|
+
"type": "object",
|
|
273
|
+
"properties": {
|
|
274
|
+
"file_id": {
|
|
275
|
+
"type": "string",
|
|
276
|
+
"minLength": 1,
|
|
277
|
+
"description": "The file to delete (recoverable within the Dropbox plan’s retention window)."
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"required": [
|
|
281
|
+
"file_id"
|
|
282
|
+
]
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
"permissions.update": {
|
|
286
|
+
"description": "Add a member (by email) to a file as viewer or editor. 'commenter' is not a Dropbox access level — typed unsupported (drive-agent plan L28 matrix). No notification email is sent.",
|
|
287
|
+
"inputSchema": {
|
|
288
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
289
|
+
"type": "object",
|
|
290
|
+
"properties": {
|
|
291
|
+
"file_id": {
|
|
292
|
+
"type": "string",
|
|
293
|
+
"minLength": 1,
|
|
294
|
+
"description": "The file to share."
|
|
295
|
+
},
|
|
296
|
+
"principal_email": {
|
|
297
|
+
"type": "string",
|
|
298
|
+
"format": "email",
|
|
299
|
+
"pattern": "^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$",
|
|
300
|
+
"description": "The account gaining access."
|
|
301
|
+
},
|
|
302
|
+
"role": {
|
|
303
|
+
"type": "string",
|
|
304
|
+
"enum": [
|
|
305
|
+
"viewer",
|
|
306
|
+
"commenter",
|
|
307
|
+
"editor"
|
|
308
|
+
],
|
|
309
|
+
"description": "Access level; Dropbox supports 'viewer' and 'editor' only."
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"required": [
|
|
313
|
+
"file_id",
|
|
314
|
+
"principal_email",
|
|
315
|
+
"role"
|
|
316
|
+
]
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
},
|
|
58
321
|
"elevenlabs": {
|
|
59
322
|
"displayName": "ElevenLabs",
|
|
60
323
|
"authKind": "api_key",
|
|
@@ -69,125 +332,2566 @@ export const connectors = {
|
|
|
69
332
|
"category": "channel",
|
|
70
333
|
"maturity": "ready",
|
|
71
334
|
"docUrl": "https://developers.facebook.com/docs/pages-api",
|
|
72
|
-
"ops": {
|
|
335
|
+
"ops": {
|
|
336
|
+
"graph.get": {
|
|
337
|
+
"description": "Escape hatch — read any Graph node by path (e.g. \"me\", a page id).",
|
|
338
|
+
"inputSchema": {
|
|
339
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
340
|
+
"type": "object",
|
|
341
|
+
"properties": {
|
|
342
|
+
"path": {
|
|
343
|
+
"type": "string",
|
|
344
|
+
"minLength": 1,
|
|
345
|
+
"description": "Graph node path, e.g. \"me\" or a page/post id."
|
|
346
|
+
},
|
|
347
|
+
"fields": {
|
|
348
|
+
"type": "array",
|
|
349
|
+
"items": {
|
|
350
|
+
"type": "string"
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
"params": {
|
|
354
|
+
"type": "object",
|
|
355
|
+
"propertyNames": {
|
|
356
|
+
"type": "string"
|
|
357
|
+
},
|
|
358
|
+
"additionalProperties": {
|
|
359
|
+
"anyOf": [
|
|
360
|
+
{
|
|
361
|
+
"type": "string"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"type": "number"
|
|
365
|
+
}
|
|
366
|
+
]
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
"required": [
|
|
371
|
+
"path"
|
|
372
|
+
],
|
|
373
|
+
"description": "Escape hatch: read any Graph node."
|
|
374
|
+
}
|
|
375
|
+
},
|
|
376
|
+
"pages.list": {
|
|
377
|
+
"description": "List managed Pages (ids + names).",
|
|
378
|
+
"inputSchema": {
|
|
379
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
380
|
+
"type": "object",
|
|
381
|
+
"properties": {},
|
|
382
|
+
"description": "List managed Pages (ids + names)."
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
"page.publish": {
|
|
386
|
+
"description": "Publish a post to a Page feed (Page token resolved server-side).",
|
|
387
|
+
"inputSchema": {
|
|
388
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
389
|
+
"type": "object",
|
|
390
|
+
"properties": {
|
|
391
|
+
"page_id": {
|
|
392
|
+
"type": "string",
|
|
393
|
+
"minLength": 1,
|
|
394
|
+
"description": "The Page id to post as (see pages.list)."
|
|
395
|
+
},
|
|
396
|
+
"message": {
|
|
397
|
+
"type": "string",
|
|
398
|
+
"minLength": 1
|
|
399
|
+
},
|
|
400
|
+
"link": {
|
|
401
|
+
"type": "string",
|
|
402
|
+
"format": "uri"
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
"required": [
|
|
406
|
+
"page_id",
|
|
407
|
+
"message"
|
|
408
|
+
],
|
|
409
|
+
"description": "Publish a post to a Page feed. Returns { id }."
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
}
|
|
73
413
|
},
|
|
74
414
|
"fal": {
|
|
75
415
|
"displayName": "fal.ai",
|
|
76
416
|
"authKind": "api_key",
|
|
77
417
|
"category": "media",
|
|
78
|
-
"maturity": "coming_soon",
|
|
79
|
-
"docUrl": "https://fal.ai/docs",
|
|
80
|
-
"ops": {}
|
|
81
|
-
},
|
|
82
|
-
"hubspot": {
|
|
83
|
-
"displayName": "HubSpot",
|
|
84
|
-
"authKind": "api_key",
|
|
85
|
-
"category": "crm",
|
|
86
|
-
"maturity": "ready",
|
|
87
|
-
"docUrl": "https://developers.hubspot.com/docs/api/private-apps",
|
|
88
|
-
"ops": {}
|
|
89
|
-
},
|
|
90
|
-
"hunter": {
|
|
91
|
-
"displayName": "Hunter.io",
|
|
92
|
-
"authKind": "api_key",
|
|
93
|
-
"category": "email",
|
|
94
418
|
"maturity": "ready",
|
|
95
|
-
"docUrl": "https://
|
|
419
|
+
"docUrl": "https://fal.ai/docs",
|
|
96
420
|
"ops": {
|
|
97
|
-
"
|
|
98
|
-
"description": "
|
|
421
|
+
"image.generate": {
|
|
422
|
+
"description": "Submit an image-generation job to the fal queue. Returns immediately with a request_id + status_url; poll image.result for the CDN image URLs. Non-blocking.",
|
|
99
423
|
"inputSchema": {
|
|
100
424
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
101
425
|
"type": "object",
|
|
102
426
|
"properties": {
|
|
103
|
-
"
|
|
427
|
+
"prompt": {
|
|
104
428
|
"type": "string",
|
|
105
429
|
"minLength": 1,
|
|
106
|
-
"description": "
|
|
430
|
+
"description": "The image prompt."
|
|
107
431
|
},
|
|
108
|
-
"
|
|
432
|
+
"model": {
|
|
433
|
+
"description": "Friendly model name; defaults to flux-schnell.",
|
|
109
434
|
"type": "string",
|
|
110
|
-
"
|
|
111
|
-
|
|
435
|
+
"enum": [
|
|
436
|
+
"flux-schnell",
|
|
437
|
+
"flux-dev",
|
|
438
|
+
"flux-pro",
|
|
439
|
+
"recraft-v3"
|
|
440
|
+
]
|
|
112
441
|
},
|
|
113
|
-
"
|
|
442
|
+
"size": {
|
|
443
|
+
"description": "Image aspect/size preset.",
|
|
114
444
|
"type": "string",
|
|
115
|
-
"
|
|
116
|
-
|
|
445
|
+
"enum": [
|
|
446
|
+
"square_hd",
|
|
447
|
+
"landscape_16_9",
|
|
448
|
+
"landscape_4_3",
|
|
449
|
+
"portrait_4_5"
|
|
450
|
+
]
|
|
451
|
+
},
|
|
452
|
+
"num_images": {
|
|
453
|
+
"type": "integer",
|
|
454
|
+
"minimum": 1,
|
|
455
|
+
"maximum": 4
|
|
117
456
|
}
|
|
118
457
|
},
|
|
119
458
|
"required": [
|
|
120
|
-
"
|
|
121
|
-
"first_name",
|
|
122
|
-
"last_name"
|
|
459
|
+
"prompt"
|
|
123
460
|
]
|
|
124
461
|
}
|
|
462
|
+
},
|
|
463
|
+
"image.result": {
|
|
464
|
+
"description": "Poll a submitted fal image job. Returns { status:\"completed\", images:[{url,width,height}] } (CDN https URLs) when ready, else { status:\"in_progress\"|\"in_queue\" } — poll again.",
|
|
465
|
+
"inputSchema": {
|
|
466
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
467
|
+
"type": "object",
|
|
468
|
+
"properties": {
|
|
469
|
+
"request_id": {
|
|
470
|
+
"type": "string",
|
|
471
|
+
"minLength": 1
|
|
472
|
+
},
|
|
473
|
+
"status_url": {
|
|
474
|
+
"type": "string",
|
|
475
|
+
"format": "uri"
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
}
|
|
125
479
|
}
|
|
126
480
|
}
|
|
127
481
|
},
|
|
128
|
-
"
|
|
129
|
-
"displayName": "
|
|
482
|
+
"gmail-broker": {
|
|
483
|
+
"displayName": "Gmail",
|
|
130
484
|
"authKind": "oauth2",
|
|
131
|
-
"category": "channel",
|
|
132
|
-
"maturity": "ready",
|
|
133
|
-
"docUrl": "https://developers.facebook.com/docs/instagram-platform",
|
|
134
|
-
"ops": {}
|
|
135
|
-
},
|
|
136
|
-
"instantly": {
|
|
137
|
-
"displayName": "Instantly.ai",
|
|
138
|
-
"authKind": "api_key",
|
|
139
|
-
"category": "email",
|
|
140
|
-
"maturity": "ready",
|
|
141
|
-
"docUrl": "https://developer.instantly.ai/",
|
|
142
|
-
"ops": {}
|
|
143
|
-
},
|
|
144
|
-
"mailchimp": {
|
|
145
|
-
"displayName": "Mailchimp",
|
|
146
|
-
"authKind": "api_key",
|
|
147
485
|
"category": "email",
|
|
148
486
|
"maturity": "ready",
|
|
149
|
-
"docUrl": "https://
|
|
150
|
-
"ops": {
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
487
|
+
"docUrl": "https://developers.google.com/gmail/api",
|
|
488
|
+
"ops": {
|
|
489
|
+
"mail.recent": {
|
|
490
|
+
"description": "List recent mail (unread from the last 2 days by default, or a Gmail search query). Returns normalized items: id, threadId, from, subject, snippet, receivedAt.",
|
|
491
|
+
"inputSchema": {
|
|
492
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
493
|
+
"type": "object",
|
|
494
|
+
"properties": {
|
|
495
|
+
"query": {
|
|
496
|
+
"description": "Gmail search query (e.g. 'from:sarah newer_than:7d'). Defaults to unread mail from the last 2 days.",
|
|
497
|
+
"type": "string"
|
|
498
|
+
},
|
|
499
|
+
"limit": {
|
|
500
|
+
"description": "Max messages to return (1–15, default 8).",
|
|
501
|
+
"type": "integer",
|
|
502
|
+
"minimum": -9007199254740991,
|
|
503
|
+
"maximum": 9007199254740991
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
},
|
|
508
|
+
"mail.get": {
|
|
509
|
+
"description": "Fetch the readable body of one email by message id (plain text, capped 4000 chars).",
|
|
510
|
+
"inputSchema": {
|
|
511
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
512
|
+
"type": "object",
|
|
513
|
+
"properties": {
|
|
514
|
+
"message_id": {
|
|
515
|
+
"type": "string",
|
|
516
|
+
"minLength": 1,
|
|
517
|
+
"description": "The Gmail message id to fetch the full body for."
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
"required": [
|
|
521
|
+
"message_id"
|
|
522
|
+
]
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
"mail.drafts": {
|
|
526
|
+
"description": "List saved drafts (to, subject, preview).",
|
|
527
|
+
"inputSchema": {
|
|
528
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
529
|
+
"type": "object",
|
|
530
|
+
"properties": {
|
|
531
|
+
"limit": {
|
|
532
|
+
"description": "Max drafts to return (1–10, default 5).",
|
|
533
|
+
"type": "integer",
|
|
534
|
+
"minimum": -9007199254740991,
|
|
535
|
+
"maximum": 9007199254740991
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
},
|
|
540
|
+
"mail.send": {
|
|
541
|
+
"description": "Send an email from the connected Gmail account.",
|
|
542
|
+
"inputSchema": {
|
|
543
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
544
|
+
"type": "object",
|
|
545
|
+
"properties": {
|
|
546
|
+
"to": {
|
|
547
|
+
"type": "string",
|
|
548
|
+
"minLength": 1,
|
|
549
|
+
"description": "Recipient email address."
|
|
550
|
+
},
|
|
551
|
+
"subject": {
|
|
552
|
+
"description": "Email subject line. If omitted, one is derived from the message body.",
|
|
553
|
+
"type": "string"
|
|
554
|
+
},
|
|
555
|
+
"body": {
|
|
556
|
+
"type": "string",
|
|
557
|
+
"description": "Email body — plain text (formatted into clean HTML) or ready HTML."
|
|
558
|
+
}
|
|
559
|
+
},
|
|
560
|
+
"required": [
|
|
561
|
+
"to",
|
|
562
|
+
"body"
|
|
563
|
+
]
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
"mail.draft": {
|
|
567
|
+
"description": "Save a draft in the connected Gmail account (does not send).",
|
|
568
|
+
"inputSchema": {
|
|
569
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
570
|
+
"type": "object",
|
|
571
|
+
"properties": {
|
|
572
|
+
"to": {
|
|
573
|
+
"description": "Recipient email address (may be left empty on a draft).",
|
|
574
|
+
"type": "string"
|
|
575
|
+
},
|
|
576
|
+
"subject": {
|
|
577
|
+
"description": "Email subject line.",
|
|
578
|
+
"type": "string"
|
|
579
|
+
},
|
|
580
|
+
"body": {
|
|
581
|
+
"description": "Draft body — plain text or ready HTML.",
|
|
582
|
+
"type": "string"
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
"mail.modify": {
|
|
588
|
+
"description": "Trash, archive, or mark a mail thread read/unread.",
|
|
589
|
+
"inputSchema": {
|
|
590
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
591
|
+
"type": "object",
|
|
592
|
+
"properties": {
|
|
593
|
+
"thread_id": {
|
|
594
|
+
"type": "string",
|
|
595
|
+
"minLength": 1,
|
|
596
|
+
"description": "The Gmail THREAD id to modify (label changes apply per-thread)."
|
|
597
|
+
},
|
|
598
|
+
"action": {
|
|
599
|
+
"type": "string",
|
|
600
|
+
"enum": [
|
|
601
|
+
"trash",
|
|
602
|
+
"archive",
|
|
603
|
+
"mark_read",
|
|
604
|
+
"mark_unread"
|
|
605
|
+
],
|
|
606
|
+
"description": "What to do with the thread."
|
|
607
|
+
}
|
|
608
|
+
},
|
|
609
|
+
"required": [
|
|
610
|
+
"thread_id",
|
|
611
|
+
"action"
|
|
612
|
+
]
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
},
|
|
617
|
+
"google-drive": {
|
|
618
|
+
"displayName": "Google Drive",
|
|
619
|
+
"authKind": "oauth2",
|
|
620
|
+
"category": "storage",
|
|
621
|
+
"maturity": "ready",
|
|
622
|
+
"docUrl": "https://developers.google.com/drive/api/reference/rest/v3",
|
|
623
|
+
"ops": {
|
|
624
|
+
"folders.list": {
|
|
625
|
+
"description": "List child folders (id + name) under a parent, for the sync folder picker.",
|
|
626
|
+
"inputSchema": {
|
|
627
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
628
|
+
"type": "object",
|
|
629
|
+
"properties": {
|
|
630
|
+
"parent_id": {
|
|
631
|
+
"description": "Parent folder id; omit or 'root' for the My Drive root.",
|
|
632
|
+
"type": "string"
|
|
633
|
+
},
|
|
634
|
+
"page_token": {
|
|
635
|
+
"description": "Continuation token from a previous page.",
|
|
636
|
+
"type": "string"
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
},
|
|
641
|
+
"files.list": {
|
|
642
|
+
"description": "List the non-folder files directly inside a folder — metadata only (id, name, mime, size, modified, revision). Shortcuts are skipped (L28); no content is fetched.",
|
|
643
|
+
"inputSchema": {
|
|
644
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
645
|
+
"type": "object",
|
|
646
|
+
"properties": {
|
|
647
|
+
"folder_id": {
|
|
648
|
+
"type": "string",
|
|
649
|
+
"minLength": 1,
|
|
650
|
+
"description": "The folder whose direct children to list."
|
|
651
|
+
},
|
|
652
|
+
"page_token": {
|
|
653
|
+
"description": "Continuation token from a previous page.",
|
|
654
|
+
"type": "string"
|
|
655
|
+
}
|
|
656
|
+
},
|
|
657
|
+
"required": [
|
|
658
|
+
"folder_id"
|
|
659
|
+
]
|
|
660
|
+
}
|
|
661
|
+
},
|
|
662
|
+
"files.download": {
|
|
663
|
+
"description": "Download one file (base64, size-capped BEFORE buffering). Google-native Docs export as markdown/plain text; other Google-native types are export_unsupported.",
|
|
664
|
+
"inputSchema": {
|
|
665
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
666
|
+
"type": "object",
|
|
667
|
+
"properties": {
|
|
668
|
+
"file_id": {
|
|
669
|
+
"type": "string",
|
|
670
|
+
"minLength": 1,
|
|
671
|
+
"description": "The Drive file id."
|
|
672
|
+
},
|
|
673
|
+
"max_bytes": {
|
|
674
|
+
"type": "integer",
|
|
675
|
+
"minimum": 1,
|
|
676
|
+
"maximum": 9007199254740991,
|
|
677
|
+
"description": "Hard size cap; larger files raise too_large WITHOUT buffering."
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
"required": [
|
|
681
|
+
"file_id",
|
|
682
|
+
"max_bytes"
|
|
683
|
+
]
|
|
684
|
+
}
|
|
685
|
+
},
|
|
686
|
+
"files.get": {
|
|
687
|
+
"description": "Metadata for one file (id, name, mime, size, modified, revision, folder, url).",
|
|
688
|
+
"inputSchema": {
|
|
689
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
690
|
+
"type": "object",
|
|
691
|
+
"properties": {
|
|
692
|
+
"file_id": {
|
|
693
|
+
"type": "string",
|
|
694
|
+
"minLength": 1,
|
|
695
|
+
"description": "The Drive file id."
|
|
696
|
+
}
|
|
697
|
+
},
|
|
698
|
+
"required": [
|
|
699
|
+
"file_id"
|
|
700
|
+
]
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
"files.search": {
|
|
704
|
+
"description": "Search files by name/full text, optionally modified after a timestamp. Metadata only.",
|
|
705
|
+
"inputSchema": {
|
|
706
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
707
|
+
"type": "object",
|
|
708
|
+
"properties": {
|
|
709
|
+
"query": {
|
|
710
|
+
"type": "string",
|
|
711
|
+
"minLength": 1,
|
|
712
|
+
"description": "Matched against file names and full text."
|
|
713
|
+
},
|
|
714
|
+
"modified_after": {
|
|
715
|
+
"description": "RFC 3339 timestamp; only files modified after this instant.",
|
|
716
|
+
"type": "string"
|
|
717
|
+
},
|
|
718
|
+
"page_token": {
|
|
719
|
+
"description": "Continuation token from a previous page.",
|
|
720
|
+
"type": "string"
|
|
721
|
+
}
|
|
722
|
+
},
|
|
723
|
+
"required": [
|
|
724
|
+
"query"
|
|
725
|
+
]
|
|
726
|
+
}
|
|
727
|
+
},
|
|
728
|
+
"changes.list": {
|
|
729
|
+
"description": "Incremental changes since a cursor. No cursor ⇒ initialize (fresh cursor, zero changes — never a backfill). A dead cursor raises status 410 (cursor_invalid); re-initialize.",
|
|
730
|
+
"inputSchema": {
|
|
731
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
732
|
+
"type": "object",
|
|
733
|
+
"properties": {
|
|
734
|
+
"cursor": {
|
|
735
|
+
"description": "Change cursor from a previous call. Omit to INITIALIZE: returns no changes, just a fresh cursor.",
|
|
736
|
+
"type": "string"
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
}
|
|
740
|
+
},
|
|
741
|
+
"files.upload": {
|
|
742
|
+
"description": "Create a file (multipart), or with overwrite_file_id REPLACE that file’s content in place — the only true overwrite on Drive; an optional revision precondition aborts on mismatch.",
|
|
743
|
+
"inputSchema": {
|
|
744
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
745
|
+
"type": "object",
|
|
746
|
+
"properties": {
|
|
747
|
+
"folder_id": {
|
|
748
|
+
"description": "Target folder id; omit or 'root' for My Drive.",
|
|
749
|
+
"type": "string"
|
|
750
|
+
},
|
|
751
|
+
"name": {
|
|
752
|
+
"type": "string",
|
|
753
|
+
"minLength": 1,
|
|
754
|
+
"description": "File name at the target."
|
|
755
|
+
},
|
|
756
|
+
"content_base64": {
|
|
757
|
+
"type": "string",
|
|
758
|
+
"minLength": 1,
|
|
759
|
+
"description": "File content, base64-encoded."
|
|
760
|
+
},
|
|
761
|
+
"mime_type": {
|
|
762
|
+
"description": "Content MIME type; defaults to octet-stream.",
|
|
763
|
+
"type": "string"
|
|
764
|
+
},
|
|
765
|
+
"overwrite_file_id": {
|
|
766
|
+
"description": "OVERWRITE mode: replace the content of this existing file id (a plain upload NEVER overwrites on Drive — it creates a same-name duplicate).",
|
|
767
|
+
"type": "string"
|
|
768
|
+
},
|
|
769
|
+
"revision": {
|
|
770
|
+
"description": "With overwrite_file_id: the revision the caller last saw; a mismatch aborts (conflict) instead of clobbering a newer version.",
|
|
771
|
+
"type": "string"
|
|
772
|
+
}
|
|
773
|
+
},
|
|
774
|
+
"required": [
|
|
775
|
+
"name",
|
|
776
|
+
"content_base64"
|
|
777
|
+
]
|
|
778
|
+
}
|
|
779
|
+
},
|
|
780
|
+
"files.move": {
|
|
781
|
+
"description": "Move a file to another folder and/or rename it.",
|
|
782
|
+
"inputSchema": {
|
|
783
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
784
|
+
"type": "object",
|
|
785
|
+
"properties": {
|
|
786
|
+
"file_id": {
|
|
787
|
+
"type": "string",
|
|
788
|
+
"minLength": 1,
|
|
789
|
+
"description": "The file to move and/or rename."
|
|
790
|
+
},
|
|
791
|
+
"new_parent_id": {
|
|
792
|
+
"description": "Destination folder id (omit to keep).",
|
|
793
|
+
"type": "string"
|
|
794
|
+
},
|
|
795
|
+
"new_name": {
|
|
796
|
+
"description": "New file name (omit to keep).",
|
|
797
|
+
"type": "string"
|
|
798
|
+
}
|
|
799
|
+
},
|
|
800
|
+
"required": [
|
|
801
|
+
"file_id"
|
|
802
|
+
]
|
|
803
|
+
}
|
|
804
|
+
},
|
|
805
|
+
"folders.create": {
|
|
806
|
+
"description": "Create a folder under a parent.",
|
|
807
|
+
"inputSchema": {
|
|
808
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
809
|
+
"type": "object",
|
|
810
|
+
"properties": {
|
|
811
|
+
"parent_id": {
|
|
812
|
+
"description": "Parent folder id; omit or 'root' for My Drive.",
|
|
813
|
+
"type": "string"
|
|
814
|
+
},
|
|
815
|
+
"name": {
|
|
816
|
+
"type": "string",
|
|
817
|
+
"minLength": 1,
|
|
818
|
+
"description": "Folder name."
|
|
819
|
+
}
|
|
820
|
+
},
|
|
821
|
+
"required": [
|
|
822
|
+
"name"
|
|
823
|
+
]
|
|
824
|
+
}
|
|
825
|
+
},
|
|
826
|
+
"files.trash": {
|
|
827
|
+
"description": "Move a file to the Drive TRASH (recoverable via the provider UI) — never a permanent delete.",
|
|
828
|
+
"inputSchema": {
|
|
829
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
830
|
+
"type": "object",
|
|
831
|
+
"properties": {
|
|
832
|
+
"file_id": {
|
|
833
|
+
"type": "string",
|
|
834
|
+
"minLength": 1,
|
|
835
|
+
"description": "The file to move to the Drive trash (recoverable)."
|
|
836
|
+
}
|
|
837
|
+
},
|
|
838
|
+
"required": [
|
|
839
|
+
"file_id"
|
|
840
|
+
]
|
|
841
|
+
}
|
|
842
|
+
},
|
|
843
|
+
"permissions.update": {
|
|
844
|
+
"description": "Grant a principal (by email) viewer/commenter/editor access to a file. No notification email is sent.",
|
|
845
|
+
"inputSchema": {
|
|
846
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
847
|
+
"type": "object",
|
|
848
|
+
"properties": {
|
|
849
|
+
"file_id": {
|
|
850
|
+
"type": "string",
|
|
851
|
+
"minLength": 1,
|
|
852
|
+
"description": "The file to share."
|
|
853
|
+
},
|
|
854
|
+
"principal_email": {
|
|
855
|
+
"type": "string",
|
|
856
|
+
"format": "email",
|
|
857
|
+
"pattern": "^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$",
|
|
858
|
+
"description": "The account gaining access."
|
|
859
|
+
},
|
|
860
|
+
"role": {
|
|
861
|
+
"type": "string",
|
|
862
|
+
"enum": [
|
|
863
|
+
"viewer",
|
|
864
|
+
"commenter",
|
|
865
|
+
"editor"
|
|
866
|
+
],
|
|
867
|
+
"description": "Access level granted to the principal."
|
|
868
|
+
}
|
|
869
|
+
},
|
|
870
|
+
"required": [
|
|
871
|
+
"file_id",
|
|
872
|
+
"principal_email",
|
|
873
|
+
"role"
|
|
874
|
+
]
|
|
875
|
+
}
|
|
876
|
+
}
|
|
877
|
+
}
|
|
878
|
+
},
|
|
879
|
+
"googlecalendar": {
|
|
880
|
+
"displayName": "Google Calendar",
|
|
881
|
+
"authKind": "oauth2",
|
|
882
|
+
"category": "scheduling",
|
|
883
|
+
"maturity": "ready",
|
|
884
|
+
"docUrl": "https://developers.google.com/calendar/api",
|
|
885
|
+
"ops": {
|
|
886
|
+
"events.list": {
|
|
887
|
+
"description": "List upcoming calendar events inside a look-ahead window. Returns id, title, start, end, meetingUrl, platform — plus the current time anchor for \"today/tomorrow\" reasoning.",
|
|
888
|
+
"inputSchema": {
|
|
889
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
890
|
+
"type": "object",
|
|
891
|
+
"properties": {
|
|
892
|
+
"window_mins": {
|
|
893
|
+
"description": "Look-ahead window in minutes (15–10080, default 2880 = 48h).",
|
|
894
|
+
"type": "integer",
|
|
895
|
+
"minimum": -9007199254740991,
|
|
896
|
+
"maximum": 9007199254740991
|
|
897
|
+
}
|
|
898
|
+
}
|
|
899
|
+
}
|
|
900
|
+
},
|
|
901
|
+
"events.create": {
|
|
902
|
+
"description": "Create a calendar event on the primary calendar.",
|
|
903
|
+
"inputSchema": {
|
|
904
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
905
|
+
"type": "object",
|
|
906
|
+
"properties": {
|
|
907
|
+
"title": {
|
|
908
|
+
"type": "string",
|
|
909
|
+
"minLength": 1,
|
|
910
|
+
"description": "Event title."
|
|
911
|
+
},
|
|
912
|
+
"start_datetime": {
|
|
913
|
+
"type": "string",
|
|
914
|
+
"minLength": 1,
|
|
915
|
+
"description": "Start, ISO 8601 with offset."
|
|
916
|
+
},
|
|
917
|
+
"end_datetime": {
|
|
918
|
+
"description": "End, ISO 8601 with offset. Defaults to 30 minutes after start.",
|
|
919
|
+
"type": "string"
|
|
920
|
+
},
|
|
921
|
+
"description": {
|
|
922
|
+
"description": "Event description.",
|
|
923
|
+
"type": "string"
|
|
924
|
+
},
|
|
925
|
+
"location": {
|
|
926
|
+
"description": "Event location.",
|
|
927
|
+
"type": "string"
|
|
928
|
+
},
|
|
929
|
+
"attendees": {
|
|
930
|
+
"description": "Attendee email addresses.",
|
|
931
|
+
"type": "array",
|
|
932
|
+
"items": {
|
|
933
|
+
"type": "string"
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
},
|
|
937
|
+
"required": [
|
|
938
|
+
"title",
|
|
939
|
+
"start_datetime"
|
|
940
|
+
]
|
|
941
|
+
}
|
|
942
|
+
},
|
|
943
|
+
"events.update": {
|
|
944
|
+
"description": "Update fields on an existing calendar event (only the fields provided change).",
|
|
945
|
+
"inputSchema": {
|
|
946
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
947
|
+
"type": "object",
|
|
948
|
+
"properties": {
|
|
949
|
+
"event_id": {
|
|
950
|
+
"type": "string",
|
|
951
|
+
"minLength": 1,
|
|
952
|
+
"description": "The event to update."
|
|
953
|
+
},
|
|
954
|
+
"title": {
|
|
955
|
+
"description": "New title.",
|
|
956
|
+
"type": "string"
|
|
957
|
+
},
|
|
958
|
+
"start_datetime": {
|
|
959
|
+
"description": "New start, ISO 8601 with offset.",
|
|
960
|
+
"type": "string"
|
|
961
|
+
},
|
|
962
|
+
"end_datetime": {
|
|
963
|
+
"description": "New end, ISO 8601 with offset.",
|
|
964
|
+
"type": "string"
|
|
965
|
+
},
|
|
966
|
+
"description": {
|
|
967
|
+
"description": "New description.",
|
|
968
|
+
"type": "string"
|
|
969
|
+
},
|
|
970
|
+
"location": {
|
|
971
|
+
"description": "New location.",
|
|
972
|
+
"type": "string"
|
|
973
|
+
}
|
|
974
|
+
},
|
|
975
|
+
"required": [
|
|
976
|
+
"event_id"
|
|
977
|
+
]
|
|
978
|
+
}
|
|
979
|
+
},
|
|
980
|
+
"events.delete": {
|
|
981
|
+
"description": "Delete a calendar event from the primary calendar.",
|
|
982
|
+
"inputSchema": {
|
|
983
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
984
|
+
"type": "object",
|
|
985
|
+
"properties": {
|
|
986
|
+
"event_id": {
|
|
987
|
+
"type": "string",
|
|
988
|
+
"minLength": 1,
|
|
989
|
+
"description": "The event to delete."
|
|
990
|
+
}
|
|
991
|
+
},
|
|
992
|
+
"required": [
|
|
993
|
+
"event_id"
|
|
994
|
+
]
|
|
995
|
+
}
|
|
996
|
+
}
|
|
997
|
+
}
|
|
998
|
+
},
|
|
999
|
+
"hubspot": {
|
|
1000
|
+
"displayName": "HubSpot",
|
|
1001
|
+
"authKind": "api_key",
|
|
1002
|
+
"category": "crm",
|
|
1003
|
+
"maturity": "ready",
|
|
1004
|
+
"docUrl": "https://developers.hubspot.com/docs/api/private-apps",
|
|
1005
|
+
"ops": {}
|
|
1006
|
+
},
|
|
1007
|
+
"hunter": {
|
|
1008
|
+
"displayName": "Hunter.io",
|
|
1009
|
+
"authKind": "api_key",
|
|
1010
|
+
"category": "email",
|
|
1011
|
+
"maturity": "ready",
|
|
1012
|
+
"docUrl": "https://hunter.io/api-documentation/v2",
|
|
1013
|
+
"ops": {
|
|
1014
|
+
"email-finder": {
|
|
1015
|
+
"description": "Find a person's email address at a company domain by their name. Returns the email, a confidence score, and verification status.",
|
|
1016
|
+
"inputSchema": {
|
|
1017
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1018
|
+
"type": "object",
|
|
1019
|
+
"properties": {
|
|
1020
|
+
"domain": {
|
|
1021
|
+
"type": "string",
|
|
1022
|
+
"minLength": 1,
|
|
1023
|
+
"description": "Company domain, e.g. \"stripe.com\"."
|
|
1024
|
+
},
|
|
1025
|
+
"first_name": {
|
|
1026
|
+
"type": "string",
|
|
1027
|
+
"minLength": 1,
|
|
1028
|
+
"description": "The person first name."
|
|
1029
|
+
},
|
|
1030
|
+
"last_name": {
|
|
1031
|
+
"type": "string",
|
|
1032
|
+
"minLength": 1,
|
|
1033
|
+
"description": "The person last name."
|
|
1034
|
+
}
|
|
1035
|
+
},
|
|
1036
|
+
"required": [
|
|
1037
|
+
"domain",
|
|
1038
|
+
"first_name",
|
|
1039
|
+
"last_name"
|
|
1040
|
+
]
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
},
|
|
1045
|
+
"instagram": {
|
|
1046
|
+
"displayName": "Instagram",
|
|
1047
|
+
"authKind": "oauth2",
|
|
1048
|
+
"category": "channel",
|
|
1049
|
+
"maturity": "ready",
|
|
1050
|
+
"docUrl": "https://developers.facebook.com/docs/instagram-platform",
|
|
1051
|
+
"ops": {
|
|
1052
|
+
"graph.get": {
|
|
1053
|
+
"description": "Escape hatch — read any Instagram Graph node by path (e.g. \"me\", a media id).",
|
|
1054
|
+
"inputSchema": {
|
|
1055
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1056
|
+
"type": "object",
|
|
1057
|
+
"properties": {
|
|
1058
|
+
"path": {
|
|
1059
|
+
"type": "string",
|
|
1060
|
+
"minLength": 1,
|
|
1061
|
+
"description": "Graph node path, e.g. \"me\" or an ig media id."
|
|
1062
|
+
},
|
|
1063
|
+
"fields": {
|
|
1064
|
+
"description": "Fields to request.",
|
|
1065
|
+
"type": "array",
|
|
1066
|
+
"items": {
|
|
1067
|
+
"type": "string"
|
|
1068
|
+
}
|
|
1069
|
+
},
|
|
1070
|
+
"params": {
|
|
1071
|
+
"description": "Extra query params.",
|
|
1072
|
+
"type": "object",
|
|
1073
|
+
"propertyNames": {
|
|
1074
|
+
"type": "string"
|
|
1075
|
+
},
|
|
1076
|
+
"additionalProperties": {
|
|
1077
|
+
"anyOf": [
|
|
1078
|
+
{
|
|
1079
|
+
"type": "string"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"type": "number"
|
|
1083
|
+
}
|
|
1084
|
+
]
|
|
1085
|
+
}
|
|
1086
|
+
}
|
|
1087
|
+
},
|
|
1088
|
+
"required": [
|
|
1089
|
+
"path"
|
|
1090
|
+
],
|
|
1091
|
+
"description": "Escape hatch: read any Graph node."
|
|
1092
|
+
}
|
|
1093
|
+
},
|
|
1094
|
+
"accounts.list": {
|
|
1095
|
+
"description": "Return the Instagram professional account authorized by this connection.",
|
|
1096
|
+
"inputSchema": {
|
|
1097
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1098
|
+
"type": "object",
|
|
1099
|
+
"properties": {},
|
|
1100
|
+
"description": "Return the Instagram professional account authorized by this connection."
|
|
1101
|
+
}
|
|
1102
|
+
},
|
|
1103
|
+
"media.create": {
|
|
1104
|
+
"description": "Create an Instagram media container (step 1 of publishing).",
|
|
1105
|
+
"inputSchema": {
|
|
1106
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1107
|
+
"type": "object",
|
|
1108
|
+
"properties": {
|
|
1109
|
+
"ig_user_id": {
|
|
1110
|
+
"type": "string",
|
|
1111
|
+
"minLength": 1,
|
|
1112
|
+
"description": "Instagram professional account id (see accounts.list)."
|
|
1113
|
+
},
|
|
1114
|
+
"caption": {
|
|
1115
|
+
"type": "string"
|
|
1116
|
+
},
|
|
1117
|
+
"image_url": {
|
|
1118
|
+
"description": "Public image URL (image posts).",
|
|
1119
|
+
"type": "string",
|
|
1120
|
+
"format": "uri"
|
|
1121
|
+
},
|
|
1122
|
+
"video_url": {
|
|
1123
|
+
"description": "Public video URL (Reels/video posts).",
|
|
1124
|
+
"type": "string",
|
|
1125
|
+
"format": "uri"
|
|
1126
|
+
},
|
|
1127
|
+
"media_type": {
|
|
1128
|
+
"description": "e.g. \"REELS\" for video; omit for image.",
|
|
1129
|
+
"type": "string"
|
|
1130
|
+
}
|
|
1131
|
+
},
|
|
1132
|
+
"required": [
|
|
1133
|
+
"ig_user_id"
|
|
1134
|
+
],
|
|
1135
|
+
"description": "Step 1: create a media container. Returns { creation_id }."
|
|
1136
|
+
}
|
|
1137
|
+
},
|
|
1138
|
+
"media.publish": {
|
|
1139
|
+
"description": "Publish a created Instagram media container (step 2 of publishing).",
|
|
1140
|
+
"inputSchema": {
|
|
1141
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1142
|
+
"type": "object",
|
|
1143
|
+
"properties": {
|
|
1144
|
+
"ig_user_id": {
|
|
1145
|
+
"type": "string",
|
|
1146
|
+
"minLength": 1
|
|
1147
|
+
},
|
|
1148
|
+
"creation_id": {
|
|
1149
|
+
"type": "string",
|
|
1150
|
+
"minLength": 1,
|
|
1151
|
+
"description": "The id returned by media.create."
|
|
1152
|
+
}
|
|
1153
|
+
},
|
|
1154
|
+
"required": [
|
|
1155
|
+
"ig_user_id",
|
|
1156
|
+
"creation_id"
|
|
1157
|
+
],
|
|
1158
|
+
"description": "Step 2: publish a created media container. Returns { id }."
|
|
1159
|
+
}
|
|
1160
|
+
}
|
|
1161
|
+
}
|
|
1162
|
+
},
|
|
1163
|
+
"instantly": {
|
|
1164
|
+
"displayName": "Instantly.ai",
|
|
1165
|
+
"authKind": "api_key",
|
|
1166
|
+
"category": "email",
|
|
1167
|
+
"maturity": "ready",
|
|
1168
|
+
"docUrl": "https://developer.instantly.ai/",
|
|
1169
|
+
"ops": {}
|
|
1170
|
+
},
|
|
1171
|
+
"mailchimp": {
|
|
1172
|
+
"displayName": "Mailchimp",
|
|
1173
|
+
"authKind": "api_key",
|
|
1174
|
+
"category": "email",
|
|
1175
|
+
"maturity": "ready",
|
|
1176
|
+
"docUrl": "https://mailchimp.com/developer/marketing/api/",
|
|
1177
|
+
"ops": {}
|
|
1178
|
+
},
|
|
1179
|
+
"meta": {
|
|
1180
|
+
"displayName": "Meta Ads (Marketing API)",
|
|
1181
|
+
"authKind": "oauth2",
|
|
1182
|
+
"category": "advertising",
|
|
1183
|
+
"maturity": "ready",
|
|
1184
|
+
"docUrl": "https://developers.facebook.com/docs/marketing-apis",
|
|
1185
|
+
"ops": {
|
|
1186
|
+
"adaccounts.list": {
|
|
1187
|
+
"description": "List the ad accounts this connection can manage (id, name, status, currency). Use a returned act_<id> as the ad_account_id arg on the account-scoped ops.",
|
|
1188
|
+
"inputSchema": {
|
|
1189
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1190
|
+
"type": "object",
|
|
1191
|
+
"properties": {},
|
|
1192
|
+
"description": "No arguments."
|
|
1193
|
+
}
|
|
1194
|
+
},
|
|
1195
|
+
"graph.get": {
|
|
1196
|
+
"description": "Escape hatch — read any Graph node by path (e.g. \"me\", a campaign id).",
|
|
1197
|
+
"inputSchema": {
|
|
1198
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1199
|
+
"type": "object",
|
|
1200
|
+
"properties": {
|
|
1201
|
+
"path": {
|
|
1202
|
+
"type": "string",
|
|
1203
|
+
"minLength": 1,
|
|
1204
|
+
"description": "Graph node path, e.g. \"me\" or \"<campaign_id>\"."
|
|
1205
|
+
},
|
|
1206
|
+
"fields": {
|
|
1207
|
+
"description": "Fields to request.",
|
|
1208
|
+
"type": "array",
|
|
1209
|
+
"items": {
|
|
1210
|
+
"type": "string"
|
|
1211
|
+
}
|
|
1212
|
+
},
|
|
1213
|
+
"params": {
|
|
1214
|
+
"description": "Extra query params.",
|
|
1215
|
+
"type": "object",
|
|
1216
|
+
"propertyNames": {
|
|
1217
|
+
"type": "string"
|
|
1218
|
+
},
|
|
1219
|
+
"additionalProperties": {
|
|
1220
|
+
"anyOf": [
|
|
1221
|
+
{
|
|
1222
|
+
"type": "string"
|
|
1223
|
+
},
|
|
1224
|
+
{
|
|
1225
|
+
"type": "number"
|
|
1226
|
+
}
|
|
1227
|
+
]
|
|
1228
|
+
}
|
|
1229
|
+
}
|
|
1230
|
+
},
|
|
1231
|
+
"required": [
|
|
1232
|
+
"path"
|
|
1233
|
+
],
|
|
1234
|
+
"description": "Escape hatch: read any Graph node."
|
|
1235
|
+
}
|
|
1236
|
+
},
|
|
1237
|
+
"insights.get": {
|
|
1238
|
+
"description": "Ad insights (spend, impressions, clicks, ctr, cpm, reach, actions…).",
|
|
1239
|
+
"inputSchema": {
|
|
1240
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1241
|
+
"type": "object",
|
|
1242
|
+
"properties": {
|
|
1243
|
+
"ad_account_id": {
|
|
1244
|
+
"description": "The ad account to act on (act_<id> or <digits>); see adaccounts.list.",
|
|
1245
|
+
"type": "string"
|
|
1246
|
+
},
|
|
1247
|
+
"level": {
|
|
1248
|
+
"type": "string",
|
|
1249
|
+
"enum": [
|
|
1250
|
+
"account",
|
|
1251
|
+
"campaign",
|
|
1252
|
+
"adset",
|
|
1253
|
+
"ad"
|
|
1254
|
+
]
|
|
1255
|
+
},
|
|
1256
|
+
"date_preset": {
|
|
1257
|
+
"description": "e.g. \"last_7d\", \"last_30d\", \"lifetime\".",
|
|
1258
|
+
"type": "string"
|
|
1259
|
+
},
|
|
1260
|
+
"date_from": {
|
|
1261
|
+
"description": "YYYY-MM-DD (with date_to; overrides date_preset).",
|
|
1262
|
+
"type": "string"
|
|
1263
|
+
},
|
|
1264
|
+
"date_to": {
|
|
1265
|
+
"description": "YYYY-MM-DD.",
|
|
1266
|
+
"type": "string"
|
|
1267
|
+
},
|
|
1268
|
+
"fields": {
|
|
1269
|
+
"type": "array",
|
|
1270
|
+
"items": {
|
|
1271
|
+
"type": "string"
|
|
1272
|
+
}
|
|
1273
|
+
},
|
|
1274
|
+
"campaign_ids": {
|
|
1275
|
+
"description": "Filter to these campaign ids.",
|
|
1276
|
+
"type": "array",
|
|
1277
|
+
"items": {
|
|
1278
|
+
"type": "string"
|
|
1279
|
+
}
|
|
1280
|
+
}
|
|
1281
|
+
}
|
|
1282
|
+
}
|
|
1283
|
+
},
|
|
1284
|
+
"campaigns.list": {
|
|
1285
|
+
"description": "List campaigns in the ad account.",
|
|
1286
|
+
"inputSchema": {
|
|
1287
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1288
|
+
"type": "object",
|
|
1289
|
+
"properties": {
|
|
1290
|
+
"ad_account_id": {
|
|
1291
|
+
"description": "The ad account to act on (act_<id> or <digits>); see adaccounts.list.",
|
|
1292
|
+
"type": "string"
|
|
1293
|
+
},
|
|
1294
|
+
"statuses": {
|
|
1295
|
+
"description": "Filter by effective status.",
|
|
1296
|
+
"type": "array",
|
|
1297
|
+
"items": {
|
|
1298
|
+
"type": "string",
|
|
1299
|
+
"enum": [
|
|
1300
|
+
"ACTIVE",
|
|
1301
|
+
"PAUSED",
|
|
1302
|
+
"ARCHIVED",
|
|
1303
|
+
"DELETED"
|
|
1304
|
+
]
|
|
1305
|
+
}
|
|
1306
|
+
}
|
|
1307
|
+
}
|
|
1308
|
+
}
|
|
1309
|
+
},
|
|
1310
|
+
"campaign.create": {
|
|
1311
|
+
"description": "Create a campaign. Provide daily_budget OR lifetime_budget, not both.",
|
|
1312
|
+
"inputSchema": {
|
|
1313
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1314
|
+
"type": "object",
|
|
1315
|
+
"properties": {
|
|
1316
|
+
"ad_account_id": {
|
|
1317
|
+
"description": "The ad account to act on (act_<id> or <digits>); see adaccounts.list.",
|
|
1318
|
+
"type": "string"
|
|
1319
|
+
},
|
|
1320
|
+
"name": {
|
|
1321
|
+
"type": "string",
|
|
1322
|
+
"minLength": 1
|
|
1323
|
+
},
|
|
1324
|
+
"objective": {
|
|
1325
|
+
"type": "string",
|
|
1326
|
+
"minLength": 1,
|
|
1327
|
+
"description": "e.g. \"OUTCOME_TRAFFIC\", \"OUTCOME_SALES\"."
|
|
1328
|
+
},
|
|
1329
|
+
"status": {
|
|
1330
|
+
"default": "PAUSED",
|
|
1331
|
+
"type": "string",
|
|
1332
|
+
"enum": [
|
|
1333
|
+
"ACTIVE",
|
|
1334
|
+
"PAUSED",
|
|
1335
|
+
"ARCHIVED",
|
|
1336
|
+
"DELETED"
|
|
1337
|
+
]
|
|
1338
|
+
},
|
|
1339
|
+
"special_ad_categories": {
|
|
1340
|
+
"default": [],
|
|
1341
|
+
"description": "Required by Meta; [] when none apply.",
|
|
1342
|
+
"type": "array",
|
|
1343
|
+
"items": {
|
|
1344
|
+
"type": "string"
|
|
1345
|
+
}
|
|
1346
|
+
},
|
|
1347
|
+
"bid_strategy": {
|
|
1348
|
+
"type": "string"
|
|
1349
|
+
},
|
|
1350
|
+
"daily_budget": {
|
|
1351
|
+
"description": "Minor units (cents).",
|
|
1352
|
+
"type": "integer",
|
|
1353
|
+
"exclusiveMinimum": 0,
|
|
1354
|
+
"maximum": 9007199254740991
|
|
1355
|
+
},
|
|
1356
|
+
"lifetime_budget": {
|
|
1357
|
+
"description": "Minor units (cents).",
|
|
1358
|
+
"type": "integer",
|
|
1359
|
+
"exclusiveMinimum": 0,
|
|
1360
|
+
"maximum": 9007199254740991
|
|
1361
|
+
}
|
|
1362
|
+
},
|
|
1363
|
+
"required": [
|
|
1364
|
+
"name",
|
|
1365
|
+
"objective"
|
|
1366
|
+
]
|
|
1367
|
+
}
|
|
1368
|
+
},
|
|
1369
|
+
"campaign.update": {
|
|
1370
|
+
"description": "Update a campaign (name, status, budget). Not both budgets.",
|
|
1371
|
+
"inputSchema": {
|
|
1372
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1373
|
+
"type": "object",
|
|
1374
|
+
"properties": {
|
|
1375
|
+
"id": {
|
|
1376
|
+
"type": "string",
|
|
1377
|
+
"minLength": 1
|
|
1378
|
+
},
|
|
1379
|
+
"name": {
|
|
1380
|
+
"type": "string"
|
|
1381
|
+
},
|
|
1382
|
+
"status": {
|
|
1383
|
+
"type": "string",
|
|
1384
|
+
"enum": [
|
|
1385
|
+
"ACTIVE",
|
|
1386
|
+
"PAUSED",
|
|
1387
|
+
"ARCHIVED",
|
|
1388
|
+
"DELETED"
|
|
1389
|
+
]
|
|
1390
|
+
},
|
|
1391
|
+
"daily_budget": {
|
|
1392
|
+
"type": "integer",
|
|
1393
|
+
"exclusiveMinimum": 0,
|
|
1394
|
+
"maximum": 9007199254740991
|
|
1395
|
+
},
|
|
1396
|
+
"lifetime_budget": {
|
|
1397
|
+
"type": "integer",
|
|
1398
|
+
"exclusiveMinimum": 0,
|
|
1399
|
+
"maximum": 9007199254740991
|
|
1400
|
+
}
|
|
1401
|
+
},
|
|
1402
|
+
"required": [
|
|
1403
|
+
"id"
|
|
1404
|
+
]
|
|
1405
|
+
}
|
|
1406
|
+
},
|
|
1407
|
+
"adsets.list": {
|
|
1408
|
+
"description": "List ad sets in a campaign.",
|
|
1409
|
+
"inputSchema": {
|
|
1410
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1411
|
+
"type": "object",
|
|
1412
|
+
"properties": {
|
|
1413
|
+
"campaign_id": {
|
|
1414
|
+
"type": "string",
|
|
1415
|
+
"minLength": 1
|
|
1416
|
+
}
|
|
1417
|
+
},
|
|
1418
|
+
"required": [
|
|
1419
|
+
"campaign_id"
|
|
1420
|
+
]
|
|
1421
|
+
}
|
|
1422
|
+
},
|
|
1423
|
+
"adsets.get_by_ids": {
|
|
1424
|
+
"description": "Fetch multiple ad sets by id.",
|
|
1425
|
+
"inputSchema": {
|
|
1426
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1427
|
+
"type": "object",
|
|
1428
|
+
"properties": {
|
|
1429
|
+
"ids": {
|
|
1430
|
+
"minItems": 1,
|
|
1431
|
+
"type": "array",
|
|
1432
|
+
"items": {
|
|
1433
|
+
"type": "string",
|
|
1434
|
+
"minLength": 1
|
|
1435
|
+
}
|
|
1436
|
+
}
|
|
1437
|
+
},
|
|
1438
|
+
"required": [
|
|
1439
|
+
"ids"
|
|
1440
|
+
]
|
|
1441
|
+
}
|
|
1442
|
+
},
|
|
1443
|
+
"adset.create": {
|
|
1444
|
+
"description": "Create an ad set. Provide daily_budget OR lifetime_budget, not both.",
|
|
1445
|
+
"inputSchema": {
|
|
1446
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1447
|
+
"type": "object",
|
|
1448
|
+
"properties": {
|
|
1449
|
+
"ad_account_id": {
|
|
1450
|
+
"description": "The ad account to act on (act_<id> or <digits>); see adaccounts.list.",
|
|
1451
|
+
"type": "string"
|
|
1452
|
+
},
|
|
1453
|
+
"name": {
|
|
1454
|
+
"type": "string",
|
|
1455
|
+
"minLength": 1
|
|
1456
|
+
},
|
|
1457
|
+
"campaign_id": {
|
|
1458
|
+
"type": "string",
|
|
1459
|
+
"minLength": 1
|
|
1460
|
+
},
|
|
1461
|
+
"status": {
|
|
1462
|
+
"default": "PAUSED",
|
|
1463
|
+
"type": "string",
|
|
1464
|
+
"enum": [
|
|
1465
|
+
"ACTIVE",
|
|
1466
|
+
"PAUSED",
|
|
1467
|
+
"ARCHIVED",
|
|
1468
|
+
"DELETED"
|
|
1469
|
+
]
|
|
1470
|
+
},
|
|
1471
|
+
"optimization_goal": {
|
|
1472
|
+
"type": "string",
|
|
1473
|
+
"minLength": 1
|
|
1474
|
+
},
|
|
1475
|
+
"billing_event": {
|
|
1476
|
+
"type": "string",
|
|
1477
|
+
"minLength": 1
|
|
1478
|
+
},
|
|
1479
|
+
"bid_amount": {
|
|
1480
|
+
"type": "integer",
|
|
1481
|
+
"exclusiveMinimum": 0,
|
|
1482
|
+
"maximum": 9007199254740991
|
|
1483
|
+
},
|
|
1484
|
+
"bid_strategy": {
|
|
1485
|
+
"type": "string"
|
|
1486
|
+
},
|
|
1487
|
+
"daily_budget": {
|
|
1488
|
+
"type": "integer",
|
|
1489
|
+
"exclusiveMinimum": 0,
|
|
1490
|
+
"maximum": 9007199254740991
|
|
1491
|
+
},
|
|
1492
|
+
"lifetime_budget": {
|
|
1493
|
+
"type": "integer",
|
|
1494
|
+
"exclusiveMinimum": 0,
|
|
1495
|
+
"maximum": 9007199254740991
|
|
1496
|
+
},
|
|
1497
|
+
"targeting": {
|
|
1498
|
+
"type": "object",
|
|
1499
|
+
"propertyNames": {
|
|
1500
|
+
"type": "string"
|
|
1501
|
+
},
|
|
1502
|
+
"additionalProperties": {}
|
|
1503
|
+
},
|
|
1504
|
+
"start_time": {
|
|
1505
|
+
"type": "string"
|
|
1506
|
+
},
|
|
1507
|
+
"end_time": {
|
|
1508
|
+
"type": "string"
|
|
1509
|
+
},
|
|
1510
|
+
"promoted_object": {
|
|
1511
|
+
"type": "object",
|
|
1512
|
+
"propertyNames": {
|
|
1513
|
+
"type": "string"
|
|
1514
|
+
},
|
|
1515
|
+
"additionalProperties": {}
|
|
1516
|
+
}
|
|
1517
|
+
},
|
|
1518
|
+
"required": [
|
|
1519
|
+
"name",
|
|
1520
|
+
"campaign_id",
|
|
1521
|
+
"optimization_goal",
|
|
1522
|
+
"billing_event"
|
|
1523
|
+
]
|
|
1524
|
+
}
|
|
1525
|
+
},
|
|
1526
|
+
"adset.update": {
|
|
1527
|
+
"description": "Update an ad set (status, budget, bid, targeting). Not both budgets.",
|
|
1528
|
+
"inputSchema": {
|
|
1529
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1530
|
+
"type": "object",
|
|
1531
|
+
"properties": {
|
|
1532
|
+
"id": {
|
|
1533
|
+
"type": "string",
|
|
1534
|
+
"minLength": 1
|
|
1535
|
+
},
|
|
1536
|
+
"status": {
|
|
1537
|
+
"type": "string",
|
|
1538
|
+
"enum": [
|
|
1539
|
+
"ACTIVE",
|
|
1540
|
+
"PAUSED",
|
|
1541
|
+
"ARCHIVED",
|
|
1542
|
+
"DELETED"
|
|
1543
|
+
]
|
|
1544
|
+
},
|
|
1545
|
+
"daily_budget": {
|
|
1546
|
+
"type": "integer",
|
|
1547
|
+
"exclusiveMinimum": 0,
|
|
1548
|
+
"maximum": 9007199254740991
|
|
1549
|
+
},
|
|
1550
|
+
"lifetime_budget": {
|
|
1551
|
+
"type": "integer",
|
|
1552
|
+
"exclusiveMinimum": 0,
|
|
1553
|
+
"maximum": 9007199254740991
|
|
1554
|
+
},
|
|
1555
|
+
"bid_amount": {
|
|
1556
|
+
"type": "integer",
|
|
1557
|
+
"exclusiveMinimum": 0,
|
|
1558
|
+
"maximum": 9007199254740991
|
|
1559
|
+
},
|
|
1560
|
+
"targeting": {
|
|
1561
|
+
"type": "object",
|
|
1562
|
+
"propertyNames": {
|
|
1563
|
+
"type": "string"
|
|
1564
|
+
},
|
|
1565
|
+
"additionalProperties": {}
|
|
1566
|
+
}
|
|
1567
|
+
},
|
|
1568
|
+
"required": [
|
|
1569
|
+
"id"
|
|
1570
|
+
]
|
|
1571
|
+
}
|
|
1572
|
+
},
|
|
1573
|
+
"ads.list": {
|
|
1574
|
+
"description": "List ads in an ad set.",
|
|
1575
|
+
"inputSchema": {
|
|
1576
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1577
|
+
"type": "object",
|
|
1578
|
+
"properties": {
|
|
1579
|
+
"adset_id": {
|
|
1580
|
+
"type": "string",
|
|
1581
|
+
"minLength": 1
|
|
1582
|
+
}
|
|
1583
|
+
},
|
|
1584
|
+
"required": [
|
|
1585
|
+
"adset_id"
|
|
1586
|
+
]
|
|
1587
|
+
}
|
|
1588
|
+
},
|
|
1589
|
+
"ad.create": {
|
|
1590
|
+
"description": "Create an ad from an existing creative.",
|
|
1591
|
+
"inputSchema": {
|
|
1592
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1593
|
+
"type": "object",
|
|
1594
|
+
"properties": {
|
|
1595
|
+
"ad_account_id": {
|
|
1596
|
+
"description": "The ad account to act on (act_<id> or <digits>); see adaccounts.list.",
|
|
1597
|
+
"type": "string"
|
|
1598
|
+
},
|
|
1599
|
+
"name": {
|
|
1600
|
+
"type": "string",
|
|
1601
|
+
"minLength": 1
|
|
1602
|
+
},
|
|
1603
|
+
"adset_id": {
|
|
1604
|
+
"type": "string",
|
|
1605
|
+
"minLength": 1
|
|
1606
|
+
},
|
|
1607
|
+
"status": {
|
|
1608
|
+
"default": "PAUSED",
|
|
1609
|
+
"type": "string",
|
|
1610
|
+
"enum": [
|
|
1611
|
+
"ACTIVE",
|
|
1612
|
+
"PAUSED",
|
|
1613
|
+
"ARCHIVED",
|
|
1614
|
+
"DELETED"
|
|
1615
|
+
]
|
|
1616
|
+
},
|
|
1617
|
+
"creative": {
|
|
1618
|
+
"type": "object",
|
|
1619
|
+
"properties": {
|
|
1620
|
+
"creative_id": {
|
|
1621
|
+
"type": "string",
|
|
1622
|
+
"minLength": 1
|
|
1623
|
+
}
|
|
1624
|
+
},
|
|
1625
|
+
"required": [
|
|
1626
|
+
"creative_id"
|
|
1627
|
+
]
|
|
1628
|
+
}
|
|
1629
|
+
},
|
|
1630
|
+
"required": [
|
|
1631
|
+
"name",
|
|
1632
|
+
"adset_id",
|
|
1633
|
+
"creative"
|
|
1634
|
+
]
|
|
1635
|
+
}
|
|
1636
|
+
},
|
|
1637
|
+
"ad.update": {
|
|
1638
|
+
"description": "Update an ad (status, name).",
|
|
1639
|
+
"inputSchema": {
|
|
1640
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1641
|
+
"type": "object",
|
|
1642
|
+
"properties": {
|
|
1643
|
+
"id": {
|
|
1644
|
+
"type": "string",
|
|
1645
|
+
"minLength": 1
|
|
1646
|
+
},
|
|
1647
|
+
"status": {
|
|
1648
|
+
"type": "string",
|
|
1649
|
+
"enum": [
|
|
1650
|
+
"ACTIVE",
|
|
1651
|
+
"PAUSED",
|
|
1652
|
+
"ARCHIVED",
|
|
1653
|
+
"DELETED"
|
|
1654
|
+
]
|
|
1655
|
+
},
|
|
1656
|
+
"name": {
|
|
1657
|
+
"type": "string"
|
|
1658
|
+
}
|
|
1659
|
+
},
|
|
1660
|
+
"required": [
|
|
1661
|
+
"id"
|
|
1662
|
+
]
|
|
1663
|
+
}
|
|
1664
|
+
},
|
|
1665
|
+
"adcreative.create": {
|
|
1666
|
+
"description": "Create an ad creative from an object_story_spec.",
|
|
1667
|
+
"inputSchema": {
|
|
1668
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1669
|
+
"type": "object",
|
|
1670
|
+
"properties": {
|
|
1671
|
+
"ad_account_id": {
|
|
1672
|
+
"description": "The ad account to act on (act_<id> or <digits>); see adaccounts.list.",
|
|
1673
|
+
"type": "string"
|
|
1674
|
+
},
|
|
1675
|
+
"name": {
|
|
1676
|
+
"type": "string",
|
|
1677
|
+
"minLength": 1
|
|
1678
|
+
},
|
|
1679
|
+
"object_story_spec": {
|
|
1680
|
+
"type": "object",
|
|
1681
|
+
"properties": {
|
|
1682
|
+
"page_id": {
|
|
1683
|
+
"type": "string",
|
|
1684
|
+
"minLength": 1
|
|
1685
|
+
},
|
|
1686
|
+
"link_data": {
|
|
1687
|
+
"type": "object",
|
|
1688
|
+
"propertyNames": {
|
|
1689
|
+
"type": "string"
|
|
1690
|
+
},
|
|
1691
|
+
"additionalProperties": {}
|
|
1692
|
+
},
|
|
1693
|
+
"video_data": {
|
|
1694
|
+
"type": "object",
|
|
1695
|
+
"propertyNames": {
|
|
1696
|
+
"type": "string"
|
|
1697
|
+
},
|
|
1698
|
+
"additionalProperties": {}
|
|
1699
|
+
}
|
|
1700
|
+
},
|
|
1701
|
+
"required": [
|
|
1702
|
+
"page_id"
|
|
1703
|
+
],
|
|
1704
|
+
"description": "The story spec (page_id + link_data/video_data)."
|
|
1705
|
+
}
|
|
1706
|
+
},
|
|
1707
|
+
"required": [
|
|
1708
|
+
"name",
|
|
1709
|
+
"object_story_spec"
|
|
1710
|
+
]
|
|
1711
|
+
}
|
|
1712
|
+
},
|
|
1713
|
+
"adimage.upload": {
|
|
1714
|
+
"description": "Import an image into the ad account by URL. Returns its hash + url.",
|
|
1715
|
+
"inputSchema": {
|
|
1716
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1717
|
+
"type": "object",
|
|
1718
|
+
"properties": {
|
|
1719
|
+
"ad_account_id": {
|
|
1720
|
+
"description": "The ad account to act on (act_<id> or <digits>); see adaccounts.list.",
|
|
1721
|
+
"type": "string"
|
|
1722
|
+
},
|
|
1723
|
+
"url": {
|
|
1724
|
+
"type": "string",
|
|
1725
|
+
"format": "uri",
|
|
1726
|
+
"description": "Public image URL to import into the ad account."
|
|
1727
|
+
}
|
|
1728
|
+
},
|
|
1729
|
+
"required": [
|
|
1730
|
+
"url"
|
|
1731
|
+
]
|
|
1732
|
+
}
|
|
1733
|
+
}
|
|
1734
|
+
}
|
|
1735
|
+
},
|
|
1736
|
+
"onedrive": {
|
|
1737
|
+
"displayName": "OneDrive",
|
|
1738
|
+
"authKind": "oauth2",
|
|
1739
|
+
"category": "storage",
|
|
1740
|
+
"maturity": "ready",
|
|
1741
|
+
"docUrl": "https://learn.microsoft.com/en-us/graph/api/resources/onedrive",
|
|
1742
|
+
"ops": {
|
|
1743
|
+
"folders.list": {
|
|
1744
|
+
"description": "List child folders (id + name) under a parent, for a folder picker.",
|
|
1745
|
+
"inputSchema": {
|
|
1746
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1747
|
+
"type": "object",
|
|
1748
|
+
"properties": {
|
|
1749
|
+
"parent_id": {
|
|
1750
|
+
"description": "Parent folder id; omit or 'root' for the drive root.",
|
|
1751
|
+
"type": "string"
|
|
1752
|
+
},
|
|
1753
|
+
"page_token": {
|
|
1754
|
+
"description": "Continuation link from a previous page.",
|
|
1755
|
+
"type": "string"
|
|
1756
|
+
}
|
|
1757
|
+
}
|
|
1758
|
+
}
|
|
1759
|
+
},
|
|
1760
|
+
"files.list": {
|
|
1761
|
+
"description": "List the non-folder files directly inside a folder — metadata only.",
|
|
1762
|
+
"inputSchema": {
|
|
1763
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1764
|
+
"type": "object",
|
|
1765
|
+
"properties": {
|
|
1766
|
+
"folder_id": {
|
|
1767
|
+
"type": "string",
|
|
1768
|
+
"minLength": 1,
|
|
1769
|
+
"description": "The folder whose direct children to list."
|
|
1770
|
+
},
|
|
1771
|
+
"page_token": {
|
|
1772
|
+
"description": "Continuation link from a previous page.",
|
|
1773
|
+
"type": "string"
|
|
1774
|
+
}
|
|
1775
|
+
},
|
|
1776
|
+
"required": [
|
|
1777
|
+
"folder_id"
|
|
1778
|
+
]
|
|
1779
|
+
}
|
|
1780
|
+
},
|
|
1781
|
+
"files.get": {
|
|
1782
|
+
"description": "Metadata for one item (id, name, mime, size, modified, revision, folder, url).",
|
|
1783
|
+
"inputSchema": {
|
|
1784
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1785
|
+
"type": "object",
|
|
1786
|
+
"properties": {
|
|
1787
|
+
"file_id": {
|
|
1788
|
+
"type": "string",
|
|
1789
|
+
"minLength": 1,
|
|
1790
|
+
"description": "The OneDrive item id."
|
|
1791
|
+
}
|
|
1792
|
+
},
|
|
1793
|
+
"required": [
|
|
1794
|
+
"file_id"
|
|
1795
|
+
]
|
|
1796
|
+
}
|
|
1797
|
+
},
|
|
1798
|
+
"files.search": {
|
|
1799
|
+
"description": "Search items by name/content, optionally modified after a timestamp.",
|
|
1800
|
+
"inputSchema": {
|
|
1801
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1802
|
+
"type": "object",
|
|
1803
|
+
"properties": {
|
|
1804
|
+
"query": {
|
|
1805
|
+
"type": "string",
|
|
1806
|
+
"minLength": 1,
|
|
1807
|
+
"description": "Matched against item names and content."
|
|
1808
|
+
},
|
|
1809
|
+
"modified_after": {
|
|
1810
|
+
"description": "ISO timestamp; only files modified after this instant.",
|
|
1811
|
+
"type": "string"
|
|
1812
|
+
},
|
|
1813
|
+
"page_token": {
|
|
1814
|
+
"description": "Continuation link from a previous page.",
|
|
1815
|
+
"type": "string"
|
|
1816
|
+
}
|
|
1817
|
+
},
|
|
1818
|
+
"required": [
|
|
1819
|
+
"query"
|
|
1820
|
+
]
|
|
1821
|
+
}
|
|
1822
|
+
},
|
|
1823
|
+
"files.download": {
|
|
1824
|
+
"description": "Download one item (base64, size-capped BEFORE buffering) via its short-lived download URL.",
|
|
1825
|
+
"inputSchema": {
|
|
1826
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1827
|
+
"type": "object",
|
|
1828
|
+
"properties": {
|
|
1829
|
+
"file_id": {
|
|
1830
|
+
"type": "string",
|
|
1831
|
+
"minLength": 1,
|
|
1832
|
+
"description": "The OneDrive item id."
|
|
1833
|
+
},
|
|
1834
|
+
"max_bytes": {
|
|
1835
|
+
"type": "integer",
|
|
1836
|
+
"minimum": 1,
|
|
1837
|
+
"maximum": 9007199254740991,
|
|
1838
|
+
"description": "Hard size cap; larger files raise too_large WITHOUT buffering."
|
|
1839
|
+
}
|
|
1840
|
+
},
|
|
1841
|
+
"required": [
|
|
1842
|
+
"file_id",
|
|
1843
|
+
"max_bytes"
|
|
1844
|
+
]
|
|
1845
|
+
}
|
|
1846
|
+
},
|
|
1847
|
+
"changes.list": {
|
|
1848
|
+
"description": "Incremental changes since a delta cursor. No cursor ⇒ initialize (fresh cursor, zero changes). An expired delta token raises status 410 (cursor_invalid); re-initialize.",
|
|
1849
|
+
"inputSchema": {
|
|
1850
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1851
|
+
"type": "object",
|
|
1852
|
+
"properties": {
|
|
1853
|
+
"cursor": {
|
|
1854
|
+
"description": "Delta link from a previous call. Omit to INITIALIZE: returns no changes, just a fresh cursor.",
|
|
1855
|
+
"type": "string"
|
|
1856
|
+
}
|
|
1857
|
+
}
|
|
1858
|
+
}
|
|
1859
|
+
},
|
|
1860
|
+
"files.upload": {
|
|
1861
|
+
"description": "Create a file, or with overwrite_file_id REPLACE that item’s content — guarded by an If-Match eTag precondition when a revision is supplied. Simple uploads only (≤4 MB, Graph’s limit); larger needs an upload session (v2).",
|
|
1862
|
+
"inputSchema": {
|
|
1863
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1864
|
+
"type": "object",
|
|
1865
|
+
"properties": {
|
|
1866
|
+
"folder_id": {
|
|
1867
|
+
"description": "Target folder id; omit or 'root' for the drive root.",
|
|
1868
|
+
"type": "string"
|
|
1869
|
+
},
|
|
1870
|
+
"name": {
|
|
1871
|
+
"type": "string",
|
|
1872
|
+
"minLength": 1,
|
|
1873
|
+
"description": "File name at the target."
|
|
1874
|
+
},
|
|
1875
|
+
"content_base64": {
|
|
1876
|
+
"type": "string",
|
|
1877
|
+
"minLength": 1,
|
|
1878
|
+
"description": "File content, base64-encoded."
|
|
1879
|
+
},
|
|
1880
|
+
"mime_type": {
|
|
1881
|
+
"description": "Content MIME type; defaults to octet-stream.",
|
|
1882
|
+
"type": "string"
|
|
1883
|
+
},
|
|
1884
|
+
"overwrite_file_id": {
|
|
1885
|
+
"description": "OVERWRITE mode: replace the content of this existing item id.",
|
|
1886
|
+
"type": "string"
|
|
1887
|
+
},
|
|
1888
|
+
"revision": {
|
|
1889
|
+
"description": "With overwrite_file_id: the revision the caller last saw, sent as an If-Match precondition — a mismatch aborts (conflict) instead of clobbering.",
|
|
1890
|
+
"type": "string"
|
|
1891
|
+
}
|
|
1892
|
+
},
|
|
1893
|
+
"required": [
|
|
1894
|
+
"name",
|
|
1895
|
+
"content_base64"
|
|
1896
|
+
]
|
|
1897
|
+
}
|
|
1898
|
+
},
|
|
1899
|
+
"files.move": {
|
|
1900
|
+
"description": "Move an item to another folder and/or rename it.",
|
|
1901
|
+
"inputSchema": {
|
|
1902
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1903
|
+
"type": "object",
|
|
1904
|
+
"properties": {
|
|
1905
|
+
"file_id": {
|
|
1906
|
+
"type": "string",
|
|
1907
|
+
"minLength": 1,
|
|
1908
|
+
"description": "The item to move and/or rename."
|
|
1909
|
+
},
|
|
1910
|
+
"new_parent_id": {
|
|
1911
|
+
"description": "Destination folder id (omit to keep).",
|
|
1912
|
+
"type": "string"
|
|
1913
|
+
},
|
|
1914
|
+
"new_name": {
|
|
1915
|
+
"description": "New file name (omit to keep).",
|
|
1916
|
+
"type": "string"
|
|
1917
|
+
}
|
|
1918
|
+
},
|
|
1919
|
+
"required": [
|
|
1920
|
+
"file_id"
|
|
1921
|
+
]
|
|
1922
|
+
}
|
|
1923
|
+
},
|
|
1924
|
+
"folders.create": {
|
|
1925
|
+
"description": "Create a folder under a parent.",
|
|
1926
|
+
"inputSchema": {
|
|
1927
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1928
|
+
"type": "object",
|
|
1929
|
+
"properties": {
|
|
1930
|
+
"parent_id": {
|
|
1931
|
+
"description": "Parent folder id; omit or 'root' for the drive root.",
|
|
1932
|
+
"type": "string"
|
|
1933
|
+
},
|
|
1934
|
+
"name": {
|
|
1935
|
+
"type": "string",
|
|
1936
|
+
"minLength": 1,
|
|
1937
|
+
"description": "Folder name."
|
|
1938
|
+
}
|
|
1939
|
+
},
|
|
1940
|
+
"required": [
|
|
1941
|
+
"name"
|
|
1942
|
+
]
|
|
1943
|
+
}
|
|
1944
|
+
},
|
|
1945
|
+
"files.trash": {
|
|
1946
|
+
"description": "Send an item to the OneDrive recycle bin (recoverable; retention is tenant policy) — never a permanent purge.",
|
|
1947
|
+
"inputSchema": {
|
|
1948
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1949
|
+
"type": "object",
|
|
1950
|
+
"properties": {
|
|
1951
|
+
"file_id": {
|
|
1952
|
+
"type": "string",
|
|
1953
|
+
"minLength": 1,
|
|
1954
|
+
"description": "The item to send to the OneDrive recycle bin (retention is tenant policy)."
|
|
1955
|
+
}
|
|
1956
|
+
},
|
|
1957
|
+
"required": [
|
|
1958
|
+
"file_id"
|
|
1959
|
+
]
|
|
1960
|
+
}
|
|
1961
|
+
},
|
|
1962
|
+
"permissions.update": {
|
|
1963
|
+
"description": "Invite a principal (by email) as viewer or editor. 'commenter' has no Graph equivalent — typed unsupported (drive-agent plan L28 matrix). No notification email is sent.",
|
|
1964
|
+
"inputSchema": {
|
|
1965
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
1966
|
+
"type": "object",
|
|
1967
|
+
"properties": {
|
|
1968
|
+
"file_id": {
|
|
1969
|
+
"type": "string",
|
|
1970
|
+
"minLength": 1,
|
|
1971
|
+
"description": "The item to share."
|
|
1972
|
+
},
|
|
1973
|
+
"principal_email": {
|
|
1974
|
+
"type": "string",
|
|
1975
|
+
"format": "email",
|
|
1976
|
+
"pattern": "^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$",
|
|
1977
|
+
"description": "The account gaining access."
|
|
1978
|
+
},
|
|
1979
|
+
"role": {
|
|
1980
|
+
"type": "string",
|
|
1981
|
+
"enum": [
|
|
1982
|
+
"viewer",
|
|
1983
|
+
"commenter",
|
|
1984
|
+
"editor"
|
|
1985
|
+
],
|
|
1986
|
+
"description": "Access level; OneDrive supports 'viewer' and 'editor' only."
|
|
1987
|
+
}
|
|
1988
|
+
},
|
|
1989
|
+
"required": [
|
|
1990
|
+
"file_id",
|
|
1991
|
+
"principal_email",
|
|
1992
|
+
"role"
|
|
1993
|
+
]
|
|
1994
|
+
}
|
|
1995
|
+
}
|
|
1996
|
+
}
|
|
1997
|
+
},
|
|
1998
|
+
"outlook": {
|
|
1999
|
+
"displayName": "Outlook",
|
|
2000
|
+
"authKind": "oauth2",
|
|
2001
|
+
"category": "email",
|
|
2002
|
+
"maturity": "ready",
|
|
2003
|
+
"docUrl": "https://learn.microsoft.com/en-us/graph/outlook-mail-concept-overview",
|
|
2004
|
+
"ops": {
|
|
2005
|
+
"mail.recent": {
|
|
2006
|
+
"description": "List recent mail (unread first when no query; full-text search when a query is given). Returns normalized items: id, from, subject, snippet, receivedAt.",
|
|
2007
|
+
"inputSchema": {
|
|
2008
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2009
|
+
"type": "object",
|
|
2010
|
+
"properties": {
|
|
2011
|
+
"query": {
|
|
2012
|
+
"description": "Search text. Defaults to listing recent unread messages when omitted.",
|
|
2013
|
+
"type": "string"
|
|
2014
|
+
},
|
|
2015
|
+
"limit": {
|
|
2016
|
+
"description": "Max messages to return (1–15, default 8).",
|
|
2017
|
+
"type": "integer",
|
|
2018
|
+
"minimum": -9007199254740991,
|
|
2019
|
+
"maximum": 9007199254740991
|
|
2020
|
+
}
|
|
2021
|
+
}
|
|
2022
|
+
}
|
|
2023
|
+
},
|
|
2024
|
+
"mail.get": {
|
|
2025
|
+
"description": "Fetch the readable body of one email by message id (plain text, capped 4000 chars).",
|
|
2026
|
+
"inputSchema": {
|
|
2027
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2028
|
+
"type": "object",
|
|
2029
|
+
"properties": {
|
|
2030
|
+
"message_id": {
|
|
2031
|
+
"type": "string",
|
|
2032
|
+
"minLength": 1,
|
|
2033
|
+
"description": "The Outlook message id to fetch the full body for."
|
|
2034
|
+
}
|
|
2035
|
+
},
|
|
2036
|
+
"required": [
|
|
2037
|
+
"message_id"
|
|
2038
|
+
]
|
|
2039
|
+
}
|
|
2040
|
+
},
|
|
2041
|
+
"mail.drafts": {
|
|
2042
|
+
"description": "List saved drafts (to, subject, preview).",
|
|
2043
|
+
"inputSchema": {
|
|
2044
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2045
|
+
"type": "object",
|
|
2046
|
+
"properties": {
|
|
2047
|
+
"limit": {
|
|
2048
|
+
"description": "Max drafts to return (1–10, default 5).",
|
|
2049
|
+
"type": "integer",
|
|
2050
|
+
"minimum": -9007199254740991,
|
|
2051
|
+
"maximum": 9007199254740991
|
|
2052
|
+
}
|
|
2053
|
+
}
|
|
2054
|
+
}
|
|
2055
|
+
},
|
|
2056
|
+
"mail.send": {
|
|
2057
|
+
"description": "Send an email from the connected Outlook account.",
|
|
2058
|
+
"inputSchema": {
|
|
2059
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2060
|
+
"type": "object",
|
|
2061
|
+
"properties": {
|
|
2062
|
+
"to": {
|
|
2063
|
+
"type": "string",
|
|
2064
|
+
"minLength": 1,
|
|
2065
|
+
"description": "Recipient email address."
|
|
2066
|
+
},
|
|
2067
|
+
"subject": {
|
|
2068
|
+
"description": "Email subject line. If omitted, one is derived from the message body.",
|
|
2069
|
+
"type": "string"
|
|
2070
|
+
},
|
|
2071
|
+
"body": {
|
|
2072
|
+
"type": "string",
|
|
2073
|
+
"description": "Email body — plain text (formatted into clean HTML) or ready HTML."
|
|
2074
|
+
}
|
|
2075
|
+
},
|
|
2076
|
+
"required": [
|
|
2077
|
+
"to",
|
|
2078
|
+
"body"
|
|
2079
|
+
]
|
|
2080
|
+
}
|
|
2081
|
+
},
|
|
2082
|
+
"mail.draft": {
|
|
2083
|
+
"description": "Save a draft in the connected Outlook account (does not send).",
|
|
2084
|
+
"inputSchema": {
|
|
2085
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2086
|
+
"type": "object",
|
|
2087
|
+
"properties": {
|
|
2088
|
+
"to": {
|
|
2089
|
+
"description": "Recipient email address (may be left empty on a draft).",
|
|
2090
|
+
"type": "string"
|
|
2091
|
+
},
|
|
2092
|
+
"subject": {
|
|
2093
|
+
"description": "Email subject line.",
|
|
2094
|
+
"type": "string"
|
|
2095
|
+
},
|
|
2096
|
+
"body": {
|
|
2097
|
+
"description": "Draft body — plain text or ready HTML.",
|
|
2098
|
+
"type": "string"
|
|
2099
|
+
}
|
|
2100
|
+
}
|
|
2101
|
+
}
|
|
2102
|
+
},
|
|
2103
|
+
"mail.modify": {
|
|
2104
|
+
"description": "Trash or archive a message. (Read/unread flags are not supported for Outlook.)",
|
|
2105
|
+
"inputSchema": {
|
|
2106
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2107
|
+
"type": "object",
|
|
2108
|
+
"properties": {
|
|
2109
|
+
"message_id": {
|
|
2110
|
+
"type": "string",
|
|
2111
|
+
"minLength": 1,
|
|
2112
|
+
"description": "The Outlook MESSAGE id to modify."
|
|
2113
|
+
},
|
|
2114
|
+
"action": {
|
|
2115
|
+
"type": "string",
|
|
2116
|
+
"enum": [
|
|
2117
|
+
"trash",
|
|
2118
|
+
"archive"
|
|
2119
|
+
],
|
|
2120
|
+
"description": "What to do with the message (Outlook cannot mark read/unread via this connector)."
|
|
2121
|
+
}
|
|
2122
|
+
},
|
|
2123
|
+
"required": [
|
|
2124
|
+
"message_id",
|
|
2125
|
+
"action"
|
|
2126
|
+
]
|
|
2127
|
+
}
|
|
2128
|
+
},
|
|
2129
|
+
"events.list": {
|
|
2130
|
+
"description": "List upcoming calendar events inside a look-ahead window. Returns id, title, start, end, meetingUrl, platform — plus the current time anchor for \"today/tomorrow\" reasoning.",
|
|
2131
|
+
"inputSchema": {
|
|
2132
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2133
|
+
"type": "object",
|
|
2134
|
+
"properties": {
|
|
2135
|
+
"window_mins": {
|
|
2136
|
+
"description": "Look-ahead window in minutes (15–10080, default 2880 = 48h).",
|
|
2137
|
+
"type": "integer",
|
|
2138
|
+
"minimum": -9007199254740991,
|
|
2139
|
+
"maximum": 9007199254740991
|
|
2140
|
+
}
|
|
2141
|
+
}
|
|
2142
|
+
}
|
|
2143
|
+
},
|
|
2144
|
+
"events.create": {
|
|
2145
|
+
"description": "Create a calendar event.",
|
|
2146
|
+
"inputSchema": {
|
|
2147
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2148
|
+
"type": "object",
|
|
2149
|
+
"properties": {
|
|
2150
|
+
"title": {
|
|
2151
|
+
"type": "string",
|
|
2152
|
+
"minLength": 1,
|
|
2153
|
+
"description": "Event title."
|
|
2154
|
+
},
|
|
2155
|
+
"start_datetime": {
|
|
2156
|
+
"type": "string",
|
|
2157
|
+
"minLength": 1,
|
|
2158
|
+
"description": "Start, ISO 8601 with offset."
|
|
2159
|
+
},
|
|
2160
|
+
"end_datetime": {
|
|
2161
|
+
"description": "End, ISO 8601 with offset. Defaults to 30 minutes after start.",
|
|
2162
|
+
"type": "string"
|
|
2163
|
+
},
|
|
2164
|
+
"description": {
|
|
2165
|
+
"description": "Event body/description.",
|
|
2166
|
+
"type": "string"
|
|
2167
|
+
},
|
|
2168
|
+
"location": {
|
|
2169
|
+
"description": "Event location.",
|
|
2170
|
+
"type": "string"
|
|
2171
|
+
},
|
|
2172
|
+
"attendees": {
|
|
2173
|
+
"description": "Attendee email addresses.",
|
|
2174
|
+
"type": "array",
|
|
2175
|
+
"items": {
|
|
2176
|
+
"type": "string"
|
|
2177
|
+
}
|
|
2178
|
+
}
|
|
2179
|
+
},
|
|
2180
|
+
"required": [
|
|
2181
|
+
"title",
|
|
2182
|
+
"start_datetime"
|
|
2183
|
+
]
|
|
2184
|
+
}
|
|
2185
|
+
},
|
|
2186
|
+
"events.update": {
|
|
2187
|
+
"description": "Update fields on an existing calendar event (only the fields provided change).",
|
|
2188
|
+
"inputSchema": {
|
|
2189
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2190
|
+
"type": "object",
|
|
2191
|
+
"properties": {
|
|
2192
|
+
"event_id": {
|
|
2193
|
+
"type": "string",
|
|
2194
|
+
"minLength": 1,
|
|
2195
|
+
"description": "The event to update."
|
|
2196
|
+
},
|
|
2197
|
+
"title": {
|
|
2198
|
+
"description": "New title.",
|
|
2199
|
+
"type": "string"
|
|
2200
|
+
},
|
|
2201
|
+
"start_datetime": {
|
|
2202
|
+
"description": "New start, ISO 8601 with offset.",
|
|
2203
|
+
"type": "string"
|
|
2204
|
+
},
|
|
2205
|
+
"end_datetime": {
|
|
2206
|
+
"description": "New end, ISO 8601 with offset.",
|
|
2207
|
+
"type": "string"
|
|
2208
|
+
},
|
|
2209
|
+
"description": {
|
|
2210
|
+
"description": "New description.",
|
|
2211
|
+
"type": "string"
|
|
2212
|
+
},
|
|
2213
|
+
"location": {
|
|
2214
|
+
"description": "New location.",
|
|
2215
|
+
"type": "string"
|
|
2216
|
+
}
|
|
2217
|
+
},
|
|
2218
|
+
"required": [
|
|
2219
|
+
"event_id"
|
|
2220
|
+
]
|
|
2221
|
+
}
|
|
2222
|
+
},
|
|
2223
|
+
"events.delete": {
|
|
2224
|
+
"description": "Delete a calendar event.",
|
|
2225
|
+
"inputSchema": {
|
|
2226
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2227
|
+
"type": "object",
|
|
2228
|
+
"properties": {
|
|
2229
|
+
"event_id": {
|
|
2230
|
+
"type": "string",
|
|
2231
|
+
"minLength": 1,
|
|
2232
|
+
"description": "The event to delete."
|
|
2233
|
+
}
|
|
2234
|
+
},
|
|
2235
|
+
"required": [
|
|
2236
|
+
"event_id"
|
|
2237
|
+
]
|
|
2238
|
+
}
|
|
2239
|
+
}
|
|
2240
|
+
}
|
|
2241
|
+
},
|
|
2242
|
+
"pagespeed": {
|
|
2243
|
+
"displayName": "PageSpeed Insights",
|
|
2244
|
+
"authKind": "api_key",
|
|
2245
|
+
"category": "analytics",
|
|
2246
|
+
"maturity": "ready",
|
|
2247
|
+
"docUrl": "https://developers.google.com/speed/docs/insights/v5/get-started",
|
|
2248
|
+
"ops": {
|
|
2249
|
+
"runpagespeed": {
|
|
2250
|
+
"description": "Run a Lighthouse audit on a URL via PageSpeed Insights v5. Returns the full v5 JSON (lighthouseResult.categories + .audits).",
|
|
2251
|
+
"inputSchema": {
|
|
2252
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2253
|
+
"type": "object",
|
|
2254
|
+
"properties": {
|
|
2255
|
+
"url": {
|
|
2256
|
+
"type": "string",
|
|
2257
|
+
"format": "uri",
|
|
2258
|
+
"description": "The page URL to audit."
|
|
2259
|
+
},
|
|
2260
|
+
"strategy": {
|
|
2261
|
+
"description": "Defaults to mobile.",
|
|
2262
|
+
"type": "string",
|
|
2263
|
+
"enum": [
|
|
2264
|
+
"mobile",
|
|
2265
|
+
"desktop"
|
|
2266
|
+
]
|
|
2267
|
+
},
|
|
2268
|
+
"category": {
|
|
2269
|
+
"description": "Lighthouse categories to run; defaults to performance.",
|
|
2270
|
+
"type": "array",
|
|
2271
|
+
"items": {
|
|
2272
|
+
"type": "string",
|
|
2273
|
+
"enum": [
|
|
2274
|
+
"performance",
|
|
2275
|
+
"accessibility",
|
|
2276
|
+
"best-practices",
|
|
2277
|
+
"seo",
|
|
2278
|
+
"pwa"
|
|
2279
|
+
]
|
|
2280
|
+
}
|
|
2281
|
+
}
|
|
2282
|
+
},
|
|
2283
|
+
"required": [
|
|
2284
|
+
"url"
|
|
2285
|
+
]
|
|
2286
|
+
}
|
|
2287
|
+
}
|
|
2288
|
+
}
|
|
2289
|
+
},
|
|
2290
|
+
"posthog": {
|
|
2291
|
+
"displayName": "PostHog",
|
|
2292
|
+
"authKind": "api_key",
|
|
2293
|
+
"category": "analytics",
|
|
2294
|
+
"maturity": "ready",
|
|
2295
|
+
"docUrl": "https://posthog.com/docs/api",
|
|
2296
|
+
"ops": {}
|
|
2297
|
+
},
|
|
2298
|
+
"reddit": {
|
|
2299
|
+
"displayName": "Reddit",
|
|
2300
|
+
"authKind": "oauth2",
|
|
2301
|
+
"category": "channel",
|
|
2302
|
+
"maturity": "ready",
|
|
2303
|
+
"docUrl": "https://www.reddit.com/dev/api",
|
|
2304
|
+
"ops": {
|
|
2305
|
+
"me": {
|
|
2306
|
+
"description": "Return the authenticated Reddit account (identity + karma). Cheap health check.",
|
|
2307
|
+
"inputSchema": {
|
|
2308
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2309
|
+
"type": "object",
|
|
2310
|
+
"properties": {},
|
|
2311
|
+
"description": "Return the authenticated Reddit account (identity/health)."
|
|
2312
|
+
}
|
|
2313
|
+
},
|
|
2314
|
+
"subreddit.posts": {
|
|
2315
|
+
"description": "List posts in a subreddit (hot/new/top/rising). Returns trimmed post metadata.",
|
|
2316
|
+
"inputSchema": {
|
|
2317
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2318
|
+
"type": "object",
|
|
2319
|
+
"properties": {
|
|
2320
|
+
"subreddit": {
|
|
2321
|
+
"type": "string",
|
|
2322
|
+
"minLength": 1,
|
|
2323
|
+
"description": "Subreddit name, without the \"r/\" prefix."
|
|
2324
|
+
},
|
|
2325
|
+
"sort": {
|
|
2326
|
+
"description": "Listing sort; defaults to hot.",
|
|
2327
|
+
"type": "string",
|
|
2328
|
+
"enum": [
|
|
2329
|
+
"hot",
|
|
2330
|
+
"new",
|
|
2331
|
+
"top",
|
|
2332
|
+
"rising"
|
|
2333
|
+
]
|
|
2334
|
+
},
|
|
2335
|
+
"time": {
|
|
2336
|
+
"description": "Time window for the \"top\" sort.",
|
|
2337
|
+
"type": "string",
|
|
2338
|
+
"enum": [
|
|
2339
|
+
"hour",
|
|
2340
|
+
"day",
|
|
2341
|
+
"week",
|
|
2342
|
+
"month",
|
|
2343
|
+
"year",
|
|
2344
|
+
"all"
|
|
2345
|
+
]
|
|
2346
|
+
},
|
|
2347
|
+
"limit": {
|
|
2348
|
+
"description": "Max posts (1-100); defaults to 25.",
|
|
2349
|
+
"type": "integer",
|
|
2350
|
+
"minimum": 1,
|
|
2351
|
+
"maximum": 100
|
|
2352
|
+
},
|
|
2353
|
+
"after": {
|
|
2354
|
+
"description": "Pagination cursor (the \"after\" from a previous call).",
|
|
2355
|
+
"type": "string"
|
|
2356
|
+
}
|
|
2357
|
+
},
|
|
2358
|
+
"required": [
|
|
2359
|
+
"subreddit"
|
|
2360
|
+
]
|
|
2361
|
+
}
|
|
2362
|
+
},
|
|
2363
|
+
"search": {
|
|
2364
|
+
"description": "Search posts, site-wide or within a subreddit. Returns trimmed post metadata.",
|
|
2365
|
+
"inputSchema": {
|
|
2366
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2367
|
+
"type": "object",
|
|
2368
|
+
"properties": {
|
|
2369
|
+
"q": {
|
|
2370
|
+
"type": "string",
|
|
2371
|
+
"minLength": 1,
|
|
2372
|
+
"description": "Search query."
|
|
2373
|
+
},
|
|
2374
|
+
"subreddit": {
|
|
2375
|
+
"description": "Restrict to this subreddit (omit for a site-wide search).",
|
|
2376
|
+
"type": "string"
|
|
2377
|
+
},
|
|
2378
|
+
"sort": {
|
|
2379
|
+
"type": "string",
|
|
2380
|
+
"enum": [
|
|
2381
|
+
"relevance",
|
|
2382
|
+
"hot",
|
|
2383
|
+
"top",
|
|
2384
|
+
"new",
|
|
2385
|
+
"comments"
|
|
2386
|
+
]
|
|
2387
|
+
},
|
|
2388
|
+
"time": {
|
|
2389
|
+
"type": "string",
|
|
2390
|
+
"enum": [
|
|
2391
|
+
"hour",
|
|
2392
|
+
"day",
|
|
2393
|
+
"week",
|
|
2394
|
+
"month",
|
|
2395
|
+
"year",
|
|
2396
|
+
"all"
|
|
2397
|
+
]
|
|
2398
|
+
},
|
|
2399
|
+
"limit": {
|
|
2400
|
+
"description": "Max results (1-100); defaults to 25.",
|
|
2401
|
+
"type": "integer",
|
|
2402
|
+
"minimum": 1,
|
|
2403
|
+
"maximum": 100
|
|
2404
|
+
}
|
|
2405
|
+
},
|
|
2406
|
+
"required": [
|
|
2407
|
+
"q"
|
|
2408
|
+
]
|
|
2409
|
+
}
|
|
2410
|
+
},
|
|
2411
|
+
"submit": {
|
|
2412
|
+
"description": "Submit a post to a subreddit (self text or link). Returns { id, name, url }.",
|
|
2413
|
+
"inputSchema": {
|
|
2414
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2415
|
+
"type": "object",
|
|
2416
|
+
"properties": {
|
|
2417
|
+
"subreddit": {
|
|
2418
|
+
"type": "string",
|
|
2419
|
+
"minLength": 1,
|
|
2420
|
+
"description": "Target subreddit, without the \"r/\" prefix."
|
|
2421
|
+
},
|
|
2422
|
+
"title": {
|
|
2423
|
+
"type": "string",
|
|
2424
|
+
"minLength": 1,
|
|
2425
|
+
"maxLength": 300
|
|
2426
|
+
},
|
|
2427
|
+
"kind": {
|
|
2428
|
+
"type": "string",
|
|
2429
|
+
"enum": [
|
|
2430
|
+
"self",
|
|
2431
|
+
"link"
|
|
2432
|
+
],
|
|
2433
|
+
"description": "\"self\" = text post (text), \"link\" = link post (url)."
|
|
2434
|
+
},
|
|
2435
|
+
"text": {
|
|
2436
|
+
"description": "Body markdown for a self post.",
|
|
2437
|
+
"type": "string"
|
|
2438
|
+
},
|
|
2439
|
+
"url": {
|
|
2440
|
+
"description": "The URL for a link post.",
|
|
2441
|
+
"type": "string",
|
|
2442
|
+
"format": "uri"
|
|
2443
|
+
},
|
|
2444
|
+
"nsfw": {
|
|
2445
|
+
"type": "boolean"
|
|
2446
|
+
},
|
|
2447
|
+
"flair_id": {
|
|
2448
|
+
"type": "string"
|
|
2449
|
+
}
|
|
2450
|
+
},
|
|
2451
|
+
"required": [
|
|
2452
|
+
"subreddit",
|
|
2453
|
+
"title",
|
|
2454
|
+
"kind"
|
|
2455
|
+
]
|
|
2456
|
+
}
|
|
2457
|
+
},
|
|
2458
|
+
"comment": {
|
|
2459
|
+
"description": "Reply to a post or comment. Returns { name } of the created comment.",
|
|
2460
|
+
"inputSchema": {
|
|
2461
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2462
|
+
"type": "object",
|
|
2463
|
+
"properties": {
|
|
2464
|
+
"thing_id": {
|
|
2465
|
+
"type": "string",
|
|
2466
|
+
"minLength": 1,
|
|
2467
|
+
"description": "Fullname of the parent (t3_… for a post, t1_… for a comment)."
|
|
2468
|
+
},
|
|
2469
|
+
"text": {
|
|
2470
|
+
"type": "string",
|
|
2471
|
+
"minLength": 1,
|
|
2472
|
+
"description": "Comment body markdown."
|
|
2473
|
+
}
|
|
2474
|
+
},
|
|
2475
|
+
"required": [
|
|
2476
|
+
"thing_id",
|
|
2477
|
+
"text"
|
|
2478
|
+
]
|
|
2479
|
+
}
|
|
2480
|
+
}
|
|
2481
|
+
}
|
|
2482
|
+
},
|
|
2483
|
+
"searchconsole": {
|
|
2484
|
+
"displayName": "Google Search Console",
|
|
2485
|
+
"authKind": "oauth2",
|
|
2486
|
+
"category": "analytics",
|
|
2487
|
+
"maturity": "ready",
|
|
2488
|
+
"docUrl": "https://developers.google.com/webmaster-tools/v1/how-tos/authorizing",
|
|
2489
|
+
"ops": {
|
|
2490
|
+
"sites.list": {
|
|
2491
|
+
"description": "List the verified Search Console properties (siteUrl + permissionLevel).",
|
|
2492
|
+
"inputSchema": {
|
|
2493
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2494
|
+
"type": "object",
|
|
2495
|
+
"properties": {},
|
|
2496
|
+
"description": "List the verified Search Console properties this connection can access."
|
|
2497
|
+
}
|
|
2498
|
+
},
|
|
2499
|
+
"searchanalytics.query": {
|
|
2500
|
+
"description": "Query search performance (clicks, impressions, ctr, position) for a property over a date range, optionally grouped by query/page/country/device/date.",
|
|
2501
|
+
"inputSchema": {
|
|
2502
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2503
|
+
"type": "object",
|
|
2504
|
+
"properties": {
|
|
2505
|
+
"site_url": {
|
|
2506
|
+
"type": "string",
|
|
2507
|
+
"minLength": 1,
|
|
2508
|
+
"description": "The property id: \"https://example.com/\" or \"sc-domain:example.com\" (see sites.list)."
|
|
2509
|
+
},
|
|
2510
|
+
"start_date": {
|
|
2511
|
+
"type": "string",
|
|
2512
|
+
"description": "YYYY-MM-DD (inclusive)."
|
|
2513
|
+
},
|
|
2514
|
+
"end_date": {
|
|
2515
|
+
"type": "string",
|
|
2516
|
+
"description": "YYYY-MM-DD (inclusive)."
|
|
2517
|
+
},
|
|
2518
|
+
"dimensions": {
|
|
2519
|
+
"description": "Group rows by these dimensions; omit for site totals.",
|
|
2520
|
+
"type": "array",
|
|
2521
|
+
"items": {
|
|
2522
|
+
"type": "string",
|
|
2523
|
+
"enum": [
|
|
2524
|
+
"query",
|
|
2525
|
+
"page",
|
|
2526
|
+
"country",
|
|
2527
|
+
"device",
|
|
2528
|
+
"searchAppearance",
|
|
2529
|
+
"date"
|
|
2530
|
+
]
|
|
2531
|
+
}
|
|
2532
|
+
},
|
|
2533
|
+
"row_limit": {
|
|
2534
|
+
"description": "Max rows (1-25000); default 1000.",
|
|
2535
|
+
"type": "integer",
|
|
2536
|
+
"minimum": 1,
|
|
2537
|
+
"maximum": 25000
|
|
2538
|
+
},
|
|
2539
|
+
"search_type": {
|
|
2540
|
+
"description": "Search type; defaults to web.",
|
|
2541
|
+
"type": "string",
|
|
2542
|
+
"enum": [
|
|
2543
|
+
"web",
|
|
2544
|
+
"image",
|
|
2545
|
+
"video",
|
|
2546
|
+
"news",
|
|
2547
|
+
"discover",
|
|
2548
|
+
"googleNews"
|
|
2549
|
+
]
|
|
2550
|
+
}
|
|
2551
|
+
},
|
|
2552
|
+
"required": [
|
|
2553
|
+
"site_url",
|
|
2554
|
+
"start_date",
|
|
2555
|
+
"end_date"
|
|
2556
|
+
]
|
|
2557
|
+
}
|
|
2558
|
+
},
|
|
2559
|
+
"sitemaps.list": {
|
|
2560
|
+
"description": "List the sitemaps submitted for a property.",
|
|
2561
|
+
"inputSchema": {
|
|
2562
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2563
|
+
"type": "object",
|
|
2564
|
+
"properties": {
|
|
2565
|
+
"site_url": {
|
|
2566
|
+
"type": "string",
|
|
2567
|
+
"minLength": 1,
|
|
2568
|
+
"description": "The property id (see sites.list)."
|
|
2569
|
+
}
|
|
2570
|
+
},
|
|
2571
|
+
"required": [
|
|
2572
|
+
"site_url"
|
|
2573
|
+
]
|
|
2574
|
+
}
|
|
2575
|
+
}
|
|
2576
|
+
}
|
|
2577
|
+
},
|
|
2578
|
+
"sendgrid": {
|
|
2579
|
+
"displayName": "SendGrid",
|
|
2580
|
+
"authKind": "api_key",
|
|
179
2581
|
"category": "email",
|
|
180
2582
|
"maturity": "ready",
|
|
181
2583
|
"docUrl": "https://docs.sendgrid.com/api-reference",
|
|
182
2584
|
"ops": {}
|
|
183
2585
|
},
|
|
184
|
-
"
|
|
185
|
-
"displayName": "
|
|
2586
|
+
"slack-broker": {
|
|
2587
|
+
"displayName": "Slack",
|
|
186
2588
|
"authKind": "oauth2",
|
|
187
|
-
"category": "
|
|
188
|
-
"maturity": "
|
|
189
|
-
"docUrl": "https://
|
|
190
|
-
"ops": {
|
|
2589
|
+
"category": "communication",
|
|
2590
|
+
"maturity": "ready",
|
|
2591
|
+
"docUrl": "https://api.slack.com/docs",
|
|
2592
|
+
"ops": {
|
|
2593
|
+
"channels.list": {
|
|
2594
|
+
"description": "List channels in the connected Slack workspace (names).",
|
|
2595
|
+
"inputSchema": {
|
|
2596
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2597
|
+
"type": "object",
|
|
2598
|
+
"properties": {
|
|
2599
|
+
"limit": {
|
|
2600
|
+
"description": "Max channels to return (1–200, default 100).",
|
|
2601
|
+
"type": "integer",
|
|
2602
|
+
"minimum": -9007199254740991,
|
|
2603
|
+
"maximum": 9007199254740991
|
|
2604
|
+
}
|
|
2605
|
+
}
|
|
2606
|
+
}
|
|
2607
|
+
},
|
|
2608
|
+
"channel.history": {
|
|
2609
|
+
"description": "Read recent messages from a channel (by name or id). If no channel matches, returns notFound plus channel-name suggestions.",
|
|
2610
|
+
"inputSchema": {
|
|
2611
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2612
|
+
"type": "object",
|
|
2613
|
+
"properties": {
|
|
2614
|
+
"channel": {
|
|
2615
|
+
"type": "string",
|
|
2616
|
+
"minLength": 1,
|
|
2617
|
+
"description": "Channel name (with or without '#') or channel id."
|
|
2618
|
+
},
|
|
2619
|
+
"limit": {
|
|
2620
|
+
"description": "Max messages to return (1–30, default 15).",
|
|
2621
|
+
"type": "integer",
|
|
2622
|
+
"minimum": -9007199254740991,
|
|
2623
|
+
"maximum": 9007199254740991
|
|
2624
|
+
}
|
|
2625
|
+
},
|
|
2626
|
+
"required": [
|
|
2627
|
+
"channel"
|
|
2628
|
+
]
|
|
2629
|
+
}
|
|
2630
|
+
},
|
|
2631
|
+
"dm.history": {
|
|
2632
|
+
"description": "Read the recent direct-message history with a person (by display name or @handle). If nobody matches, returns notFound plus name suggestions.",
|
|
2633
|
+
"inputSchema": {
|
|
2634
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2635
|
+
"type": "object",
|
|
2636
|
+
"properties": {
|
|
2637
|
+
"person": {
|
|
2638
|
+
"type": "string",
|
|
2639
|
+
"minLength": 1,
|
|
2640
|
+
"description": "Person's display name or @handle."
|
|
2641
|
+
},
|
|
2642
|
+
"limit": {
|
|
2643
|
+
"description": "Max messages to return (1–30, default 15).",
|
|
2644
|
+
"type": "integer",
|
|
2645
|
+
"minimum": -9007199254740991,
|
|
2646
|
+
"maximum": 9007199254740991
|
|
2647
|
+
}
|
|
2648
|
+
},
|
|
2649
|
+
"required": [
|
|
2650
|
+
"person"
|
|
2651
|
+
]
|
|
2652
|
+
}
|
|
2653
|
+
},
|
|
2654
|
+
"message.send": {
|
|
2655
|
+
"description": "Post a message to a Slack channel (chosen by name or id).",
|
|
2656
|
+
"inputSchema": {
|
|
2657
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2658
|
+
"type": "object",
|
|
2659
|
+
"properties": {
|
|
2660
|
+
"channel": {
|
|
2661
|
+
"type": "string",
|
|
2662
|
+
"minLength": 1,
|
|
2663
|
+
"description": "Channel name (with or without '#') or channel id."
|
|
2664
|
+
},
|
|
2665
|
+
"text": {
|
|
2666
|
+
"type": "string",
|
|
2667
|
+
"minLength": 1,
|
|
2668
|
+
"description": "Message text (Slack markdown)."
|
|
2669
|
+
}
|
|
2670
|
+
},
|
|
2671
|
+
"required": [
|
|
2672
|
+
"channel",
|
|
2673
|
+
"text"
|
|
2674
|
+
]
|
|
2675
|
+
}
|
|
2676
|
+
},
|
|
2677
|
+
"dm.send": {
|
|
2678
|
+
"description": "Send a direct message to a person (by display name or @handle).",
|
|
2679
|
+
"inputSchema": {
|
|
2680
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2681
|
+
"type": "object",
|
|
2682
|
+
"properties": {
|
|
2683
|
+
"person": {
|
|
2684
|
+
"type": "string",
|
|
2685
|
+
"minLength": 1,
|
|
2686
|
+
"description": "Person's display name or @handle."
|
|
2687
|
+
},
|
|
2688
|
+
"text": {
|
|
2689
|
+
"type": "string",
|
|
2690
|
+
"minLength": 1,
|
|
2691
|
+
"description": "Message text (Slack markdown)."
|
|
2692
|
+
}
|
|
2693
|
+
},
|
|
2694
|
+
"required": [
|
|
2695
|
+
"person",
|
|
2696
|
+
"text"
|
|
2697
|
+
]
|
|
2698
|
+
}
|
|
2699
|
+
}
|
|
2700
|
+
}
|
|
2701
|
+
},
|
|
2702
|
+
"smartlead": {
|
|
2703
|
+
"displayName": "Smartlead",
|
|
2704
|
+
"authKind": "api_key",
|
|
2705
|
+
"category": "email",
|
|
2706
|
+
"maturity": "ready",
|
|
2707
|
+
"docUrl": "https://api.smartlead.ai/reference/introduction",
|
|
2708
|
+
"ops": {
|
|
2709
|
+
"campaigns.list": {
|
|
2710
|
+
"description": "List all email campaigns for the connected Smartlead account (id, name, status, schedule).",
|
|
2711
|
+
"inputSchema": {
|
|
2712
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2713
|
+
"type": "object",
|
|
2714
|
+
"properties": {}
|
|
2715
|
+
}
|
|
2716
|
+
},
|
|
2717
|
+
"campaign.create": {
|
|
2718
|
+
"description": "Create a new (empty) email campaign. Returns Smartlead's raw create-campaign response ({ ok, id, name }). Configure sequence/schedule separately.",
|
|
2719
|
+
"inputSchema": {
|
|
2720
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2721
|
+
"type": "object",
|
|
2722
|
+
"properties": {
|
|
2723
|
+
"name": {
|
|
2724
|
+
"type": "string",
|
|
2725
|
+
"minLength": 1,
|
|
2726
|
+
"description": "Campaign name."
|
|
2727
|
+
},
|
|
2728
|
+
"client_id": {
|
|
2729
|
+
"description": "Optional Smartlead client (whitelabel) id to own the campaign.",
|
|
2730
|
+
"anyOf": [
|
|
2731
|
+
{
|
|
2732
|
+
"type": "string"
|
|
2733
|
+
},
|
|
2734
|
+
{
|
|
2735
|
+
"type": "number"
|
|
2736
|
+
}
|
|
2737
|
+
]
|
|
2738
|
+
}
|
|
2739
|
+
},
|
|
2740
|
+
"required": [
|
|
2741
|
+
"name"
|
|
2742
|
+
]
|
|
2743
|
+
}
|
|
2744
|
+
},
|
|
2745
|
+
"campaign.analytics": {
|
|
2746
|
+
"description": "Fetch a campaign's aggregate analytics (sent, opens, replies, bounces, etc.) by campaign id.",
|
|
2747
|
+
"inputSchema": {
|
|
2748
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2749
|
+
"type": "object",
|
|
2750
|
+
"properties": {
|
|
2751
|
+
"campaign_id": {
|
|
2752
|
+
"anyOf": [
|
|
2753
|
+
{
|
|
2754
|
+
"type": "string",
|
|
2755
|
+
"minLength": 1
|
|
2756
|
+
},
|
|
2757
|
+
{
|
|
2758
|
+
"type": "number"
|
|
2759
|
+
}
|
|
2760
|
+
],
|
|
2761
|
+
"description": "Campaign id."
|
|
2762
|
+
}
|
|
2763
|
+
},
|
|
2764
|
+
"required": [
|
|
2765
|
+
"campaign_id"
|
|
2766
|
+
]
|
|
2767
|
+
}
|
|
2768
|
+
},
|
|
2769
|
+
"leads.add": {
|
|
2770
|
+
"description": "Import leads into a campaign (max 400 per request). Each lead needs an email; other fields and custom_fields feed the template merge tags.",
|
|
2771
|
+
"inputSchema": {
|
|
2772
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2773
|
+
"type": "object",
|
|
2774
|
+
"properties": {
|
|
2775
|
+
"campaign_id": {
|
|
2776
|
+
"anyOf": [
|
|
2777
|
+
{
|
|
2778
|
+
"type": "string",
|
|
2779
|
+
"minLength": 1
|
|
2780
|
+
},
|
|
2781
|
+
{
|
|
2782
|
+
"type": "number"
|
|
2783
|
+
}
|
|
2784
|
+
],
|
|
2785
|
+
"description": "Target campaign id."
|
|
2786
|
+
},
|
|
2787
|
+
"lead_list": {
|
|
2788
|
+
"minItems": 1,
|
|
2789
|
+
"maxItems": 400,
|
|
2790
|
+
"type": "array",
|
|
2791
|
+
"items": {
|
|
2792
|
+
"type": "object",
|
|
2793
|
+
"properties": {
|
|
2794
|
+
"email": {
|
|
2795
|
+
"type": "string",
|
|
2796
|
+
"format": "email",
|
|
2797
|
+
"pattern": "^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$",
|
|
2798
|
+
"description": "Lead email address (required)."
|
|
2799
|
+
},
|
|
2800
|
+
"first_name": {
|
|
2801
|
+
"type": "string"
|
|
2802
|
+
},
|
|
2803
|
+
"last_name": {
|
|
2804
|
+
"type": "string"
|
|
2805
|
+
},
|
|
2806
|
+
"company_name": {
|
|
2807
|
+
"type": "string"
|
|
2808
|
+
},
|
|
2809
|
+
"phone_number": {
|
|
2810
|
+
"type": "string"
|
|
2811
|
+
},
|
|
2812
|
+
"website": {
|
|
2813
|
+
"type": "string"
|
|
2814
|
+
},
|
|
2815
|
+
"location": {
|
|
2816
|
+
"type": "string"
|
|
2817
|
+
},
|
|
2818
|
+
"linkedin_profile": {
|
|
2819
|
+
"type": "string"
|
|
2820
|
+
},
|
|
2821
|
+
"custom_fields": {
|
|
2822
|
+
"description": "Bespoke merge fields referenced by the campaign template.",
|
|
2823
|
+
"type": "object",
|
|
2824
|
+
"propertyNames": {
|
|
2825
|
+
"type": "string"
|
|
2826
|
+
},
|
|
2827
|
+
"additionalProperties": {
|
|
2828
|
+
"anyOf": [
|
|
2829
|
+
{
|
|
2830
|
+
"type": "string"
|
|
2831
|
+
},
|
|
2832
|
+
{
|
|
2833
|
+
"type": "number"
|
|
2834
|
+
},
|
|
2835
|
+
{
|
|
2836
|
+
"type": "boolean"
|
|
2837
|
+
}
|
|
2838
|
+
]
|
|
2839
|
+
}
|
|
2840
|
+
}
|
|
2841
|
+
},
|
|
2842
|
+
"required": [
|
|
2843
|
+
"email"
|
|
2844
|
+
]
|
|
2845
|
+
},
|
|
2846
|
+
"description": "Leads to import (max 400 per request)."
|
|
2847
|
+
},
|
|
2848
|
+
"settings": {
|
|
2849
|
+
"description": "Import behaviour (dedup / suppression handling).",
|
|
2850
|
+
"type": "object",
|
|
2851
|
+
"properties": {
|
|
2852
|
+
"ignore_global_block_list": {
|
|
2853
|
+
"type": "boolean"
|
|
2854
|
+
},
|
|
2855
|
+
"ignore_unsubscribe_list": {
|
|
2856
|
+
"type": "boolean"
|
|
2857
|
+
},
|
|
2858
|
+
"ignore_community_bounce_list": {
|
|
2859
|
+
"type": "boolean"
|
|
2860
|
+
},
|
|
2861
|
+
"ignore_duplicate_leads_in_other_campaign": {
|
|
2862
|
+
"type": "boolean"
|
|
2863
|
+
}
|
|
2864
|
+
}
|
|
2865
|
+
}
|
|
2866
|
+
},
|
|
2867
|
+
"required": [
|
|
2868
|
+
"campaign_id",
|
|
2869
|
+
"lead_list"
|
|
2870
|
+
]
|
|
2871
|
+
}
|
|
2872
|
+
},
|
|
2873
|
+
"email-accounts.list": {
|
|
2874
|
+
"description": "List the sending email accounts (mailboxes) connected to the Smartlead account, with warmup + health status.",
|
|
2875
|
+
"inputSchema": {
|
|
2876
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
2877
|
+
"type": "object",
|
|
2878
|
+
"properties": {
|
|
2879
|
+
"limit": {
|
|
2880
|
+
"description": "Page size (default 100).",
|
|
2881
|
+
"type": "integer",
|
|
2882
|
+
"exclusiveMinimum": 0,
|
|
2883
|
+
"maximum": 100
|
|
2884
|
+
},
|
|
2885
|
+
"offset": {
|
|
2886
|
+
"description": "Pagination offset.",
|
|
2887
|
+
"type": "integer",
|
|
2888
|
+
"minimum": 0,
|
|
2889
|
+
"maximum": 9007199254740991
|
|
2890
|
+
}
|
|
2891
|
+
}
|
|
2892
|
+
}
|
|
2893
|
+
}
|
|
2894
|
+
}
|
|
191
2895
|
},
|
|
192
2896
|
"twilio": {
|
|
193
2897
|
"displayName": "Twilio",
|