@apteva/integrations 0.3.15 → 0.3.16
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/package.json +1 -1
- package/src/apps/airtable.json +408 -58
- package/src/apps/nordigen.json +512 -0
- package/src/apps/plaid.json +693 -0
- package/src/apps/saltedge.json +787 -0
- package/src/apps/socialcast.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apteva/integrations",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.16",
|
|
4
4
|
"description": "Local integrations, connections, and webhooks for Apteva. Self-contained app templates, OAuth engine, and trigger provider.",
|
|
5
5
|
"author": "Apteva <hello@apteva.com>",
|
|
6
6
|
"license": "Elastic-2.0",
|
package/src/apps/airtable.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"slug": "airtable",
|
|
3
3
|
"name": "Airtable",
|
|
4
|
-
"description": "MCP server for Airtable
|
|
4
|
+
"description": "MCP server for Airtable - bases, tables, records, fields, views, and webhooks via the Airtable REST API",
|
|
5
5
|
"logo": "https://www.google.com/s2/favicons?domain=airtable.com&sz=128",
|
|
6
6
|
"categories": [
|
|
7
7
|
"database",
|
|
8
8
|
"airtable",
|
|
9
9
|
"records",
|
|
10
10
|
"tables",
|
|
11
|
+
"spreadsheet",
|
|
11
12
|
"data"
|
|
12
13
|
],
|
|
13
14
|
"base_url": "https://api.airtable.com/v0",
|
|
@@ -43,25 +44,30 @@
|
|
|
43
44
|
"tools": [
|
|
44
45
|
{
|
|
45
46
|
"name": "list_bases",
|
|
46
|
-
"description": "List all
|
|
47
|
+
"description": "List all accessible Airtable bases with their IDs, names, and permission levels",
|
|
47
48
|
"method": "GET",
|
|
48
|
-
"path": "/
|
|
49
|
+
"path": "/meta/bases",
|
|
49
50
|
"input_schema": {
|
|
50
51
|
"type": "object",
|
|
51
|
-
"properties": {
|
|
52
|
+
"properties": {
|
|
53
|
+
"offset": {
|
|
54
|
+
"type": "string",
|
|
55
|
+
"description": "Pagination offset from previous response"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
52
58
|
}
|
|
53
59
|
},
|
|
54
60
|
{
|
|
55
|
-
"name": "
|
|
56
|
-
"description": "
|
|
61
|
+
"name": "get_base_schema",
|
|
62
|
+
"description": "Get the schema of an Airtable base including all tables, fields, and their types",
|
|
57
63
|
"method": "GET",
|
|
58
|
-
"path": "/
|
|
64
|
+
"path": "/meta/bases/{base_id}/tables",
|
|
59
65
|
"input_schema": {
|
|
60
66
|
"type": "object",
|
|
61
67
|
"properties": {
|
|
62
68
|
"base_id": {
|
|
63
69
|
"type": "string",
|
|
64
|
-
"description": "The ID of the Airtable base"
|
|
70
|
+
"description": "The ID of the Airtable base (e.g. appXXXXXXXXXX)"
|
|
65
71
|
}
|
|
66
72
|
},
|
|
67
73
|
"required": [
|
|
@@ -70,10 +76,10 @@
|
|
|
70
76
|
}
|
|
71
77
|
},
|
|
72
78
|
{
|
|
73
|
-
"name": "
|
|
74
|
-
"description": "
|
|
75
|
-
"method": "
|
|
76
|
-
"path": "/
|
|
79
|
+
"name": "create_table",
|
|
80
|
+
"description": "Create a new table in an Airtable base with specified fields",
|
|
81
|
+
"method": "POST",
|
|
82
|
+
"path": "/meta/bases/{base_id}/tables",
|
|
77
83
|
"input_schema": {
|
|
78
84
|
"type": "object",
|
|
79
85
|
"properties": {
|
|
@@ -81,38 +87,74 @@
|
|
|
81
87
|
"type": "string",
|
|
82
88
|
"description": "The ID of the Airtable base"
|
|
83
89
|
},
|
|
84
|
-
"
|
|
90
|
+
"name": {
|
|
85
91
|
"type": "string",
|
|
86
|
-
"description": "
|
|
92
|
+
"description": "Name of the new table"
|
|
87
93
|
},
|
|
88
|
-
"
|
|
89
|
-
"type": "number",
|
|
90
|
-
"description": "Maximum number of records to return",
|
|
91
|
-
"default": 100
|
|
92
|
-
},
|
|
93
|
-
"filter_by_formula": {
|
|
94
|
+
"description": {
|
|
94
95
|
"type": "string",
|
|
95
|
-
"description": "
|
|
96
|
+
"description": "Description of the table"
|
|
96
97
|
},
|
|
97
|
-
"
|
|
98
|
+
"fields": {
|
|
98
99
|
"type": "array",
|
|
100
|
+
"description": "Array of field definitions with name, type, and options",
|
|
99
101
|
"items": {
|
|
100
102
|
"type": "object",
|
|
101
103
|
"properties": {
|
|
102
|
-
"
|
|
104
|
+
"name": {
|
|
103
105
|
"type": "string"
|
|
104
106
|
},
|
|
105
|
-
"
|
|
107
|
+
"type": {
|
|
106
108
|
"type": "string",
|
|
107
|
-
"
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
109
|
+
"description": "Field type: singleLineText, multilineText, number, percent, currency, email, url, checkbox, singleSelect, multipleSelects, date, dateTime, etc."
|
|
110
|
+
},
|
|
111
|
+
"description": {
|
|
112
|
+
"type": "string"
|
|
113
|
+
},
|
|
114
|
+
"options": {
|
|
115
|
+
"type": "object",
|
|
116
|
+
"description": "Type-specific options (e.g. choices for select fields)"
|
|
111
117
|
}
|
|
112
|
-
}
|
|
118
|
+
},
|
|
119
|
+
"required": [
|
|
120
|
+
"name",
|
|
121
|
+
"type"
|
|
122
|
+
]
|
|
113
123
|
}
|
|
114
124
|
}
|
|
115
125
|
},
|
|
126
|
+
"required": [
|
|
127
|
+
"base_id",
|
|
128
|
+
"name",
|
|
129
|
+
"fields"
|
|
130
|
+
]
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "update_table",
|
|
135
|
+
"description": "Update a table's name or description",
|
|
136
|
+
"method": "PATCH",
|
|
137
|
+
"path": "/meta/bases/{base_id}/tables/{table_id}",
|
|
138
|
+
"input_schema": {
|
|
139
|
+
"type": "object",
|
|
140
|
+
"properties": {
|
|
141
|
+
"base_id": {
|
|
142
|
+
"type": "string",
|
|
143
|
+
"description": "The ID of the Airtable base"
|
|
144
|
+
},
|
|
145
|
+
"table_id": {
|
|
146
|
+
"type": "string",
|
|
147
|
+
"description": "The ID of the table to update"
|
|
148
|
+
},
|
|
149
|
+
"name": {
|
|
150
|
+
"type": "string",
|
|
151
|
+
"description": "New table name"
|
|
152
|
+
},
|
|
153
|
+
"description": {
|
|
154
|
+
"type": "string",
|
|
155
|
+
"description": "New table description"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
116
158
|
"required": [
|
|
117
159
|
"base_id",
|
|
118
160
|
"table_id"
|
|
@@ -120,10 +162,10 @@
|
|
|
120
162
|
}
|
|
121
163
|
},
|
|
122
164
|
{
|
|
123
|
-
"name": "
|
|
124
|
-
"description": "
|
|
165
|
+
"name": "create_field",
|
|
166
|
+
"description": "Add a new field (column) to an existing table",
|
|
125
167
|
"method": "POST",
|
|
126
|
-
"path": "/
|
|
168
|
+
"path": "/meta/bases/{base_id}/tables/{table_id}/fields",
|
|
127
169
|
"input_schema": {
|
|
128
170
|
"type": "object",
|
|
129
171
|
"properties": {
|
|
@@ -133,25 +175,74 @@
|
|
|
133
175
|
},
|
|
134
176
|
"table_id": {
|
|
135
177
|
"type": "string",
|
|
136
|
-
"description": "The ID
|
|
178
|
+
"description": "The ID of the table"
|
|
137
179
|
},
|
|
138
|
-
"
|
|
180
|
+
"name": {
|
|
181
|
+
"type": "string",
|
|
182
|
+
"description": "Field name"
|
|
183
|
+
},
|
|
184
|
+
"type": {
|
|
185
|
+
"type": "string",
|
|
186
|
+
"description": "Field type: singleLineText, multilineText, number, percent, currency, email, url, checkbox, singleSelect, multipleSelects, date, dateTime, phoneNumber, rating, richText, etc."
|
|
187
|
+
},
|
|
188
|
+
"description": {
|
|
189
|
+
"type": "string",
|
|
190
|
+
"description": "Field description"
|
|
191
|
+
},
|
|
192
|
+
"options": {
|
|
139
193
|
"type": "object",
|
|
140
|
-
"description": "
|
|
194
|
+
"description": "Type-specific options (e.g. choices for select, precision for number)"
|
|
141
195
|
}
|
|
142
196
|
},
|
|
143
197
|
"required": [
|
|
144
198
|
"base_id",
|
|
145
199
|
"table_id",
|
|
146
|
-
"
|
|
200
|
+
"name",
|
|
201
|
+
"type"
|
|
202
|
+
]
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"name": "update_field",
|
|
207
|
+
"description": "Update a field's name, description, or type-specific options",
|
|
208
|
+
"method": "PATCH",
|
|
209
|
+
"path": "/meta/bases/{base_id}/tables/{table_id}/fields/{field_id}",
|
|
210
|
+
"input_schema": {
|
|
211
|
+
"type": "object",
|
|
212
|
+
"properties": {
|
|
213
|
+
"base_id": {
|
|
214
|
+
"type": "string",
|
|
215
|
+
"description": "The ID of the Airtable base"
|
|
216
|
+
},
|
|
217
|
+
"table_id": {
|
|
218
|
+
"type": "string",
|
|
219
|
+
"description": "The ID of the table"
|
|
220
|
+
},
|
|
221
|
+
"field_id": {
|
|
222
|
+
"type": "string",
|
|
223
|
+
"description": "The ID of the field to update"
|
|
224
|
+
},
|
|
225
|
+
"name": {
|
|
226
|
+
"type": "string",
|
|
227
|
+
"description": "New field name"
|
|
228
|
+
},
|
|
229
|
+
"description": {
|
|
230
|
+
"type": "string",
|
|
231
|
+
"description": "New field description"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
"required": [
|
|
235
|
+
"base_id",
|
|
236
|
+
"table_id",
|
|
237
|
+
"field_id"
|
|
147
238
|
]
|
|
148
239
|
}
|
|
149
240
|
},
|
|
150
241
|
{
|
|
151
|
-
"name": "
|
|
152
|
-
"description": "
|
|
153
|
-
"method": "
|
|
154
|
-
"path": "/
|
|
242
|
+
"name": "list_records",
|
|
243
|
+
"description": "List records from a table with optional filtering, sorting, and field selection. Supports Airtable formula filtering.",
|
|
244
|
+
"method": "GET",
|
|
245
|
+
"path": "/{base_id}/{table_id}",
|
|
155
246
|
"input_schema": {
|
|
156
247
|
"type": "object",
|
|
157
248
|
"properties": {
|
|
@@ -163,28 +254,57 @@
|
|
|
163
254
|
"type": "string",
|
|
164
255
|
"description": "The ID or name of the table"
|
|
165
256
|
},
|
|
166
|
-
"
|
|
257
|
+
"maxRecords": {
|
|
258
|
+
"type": "integer",
|
|
259
|
+
"description": "Maximum number of records to return (max 100 per page)"
|
|
260
|
+
},
|
|
261
|
+
"pageSize": {
|
|
262
|
+
"type": "integer",
|
|
263
|
+
"description": "Number of records per page (max 100)"
|
|
264
|
+
},
|
|
265
|
+
"offset": {
|
|
266
|
+
"type": "string",
|
|
267
|
+
"description": "Pagination offset from previous response"
|
|
268
|
+
},
|
|
269
|
+
"filterByFormula": {
|
|
270
|
+
"type": "string",
|
|
271
|
+
"description": "Airtable formula to filter records, e.g. {Status}='Active'"
|
|
272
|
+
},
|
|
273
|
+
"sort_field": {
|
|
167
274
|
"type": "string",
|
|
168
|
-
"description": "
|
|
275
|
+
"description": "Field name to sort by"
|
|
276
|
+
},
|
|
277
|
+
"sort_direction": {
|
|
278
|
+
"type": "string",
|
|
279
|
+
"enum": [
|
|
280
|
+
"asc",
|
|
281
|
+
"desc"
|
|
282
|
+
],
|
|
283
|
+
"description": "Sort direction"
|
|
169
284
|
},
|
|
170
285
|
"fields": {
|
|
171
|
-
"type": "
|
|
172
|
-
"
|
|
286
|
+
"type": "array",
|
|
287
|
+
"items": {
|
|
288
|
+
"type": "string"
|
|
289
|
+
},
|
|
290
|
+
"description": "Only return these specific field names"
|
|
291
|
+
},
|
|
292
|
+
"view": {
|
|
293
|
+
"type": "string",
|
|
294
|
+
"description": "Name or ID of a view to use (applies its filters/sorts)"
|
|
173
295
|
}
|
|
174
296
|
},
|
|
175
297
|
"required": [
|
|
176
298
|
"base_id",
|
|
177
|
-
"table_id"
|
|
178
|
-
"record_id",
|
|
179
|
-
"fields"
|
|
299
|
+
"table_id"
|
|
180
300
|
]
|
|
181
301
|
}
|
|
182
302
|
},
|
|
183
303
|
{
|
|
184
|
-
"name": "
|
|
185
|
-
"description": "
|
|
186
|
-
"method": "
|
|
187
|
-
"path": "/
|
|
304
|
+
"name": "get_record",
|
|
305
|
+
"description": "Get a single record by its ID",
|
|
306
|
+
"method": "GET",
|
|
307
|
+
"path": "/{base_id}/{table_id}/{record_id}",
|
|
188
308
|
"input_schema": {
|
|
189
309
|
"type": "object",
|
|
190
310
|
"properties": {
|
|
@@ -198,7 +318,7 @@
|
|
|
198
318
|
},
|
|
199
319
|
"record_id": {
|
|
200
320
|
"type": "string",
|
|
201
|
-
"description": "The ID of the record
|
|
321
|
+
"description": "The ID of the record (recXXXXXXXXXX)"
|
|
202
322
|
}
|
|
203
323
|
},
|
|
204
324
|
"required": [
|
|
@@ -209,25 +329,255 @@
|
|
|
209
329
|
}
|
|
210
330
|
},
|
|
211
331
|
{
|
|
212
|
-
"name": "
|
|
213
|
-
"description": "
|
|
332
|
+
"name": "create_records",
|
|
333
|
+
"description": "Create one or more records in a table. Supports up to 10 records per call.",
|
|
334
|
+
"method": "POST",
|
|
335
|
+
"path": "/{base_id}/{table_id}",
|
|
336
|
+
"input_schema": {
|
|
337
|
+
"type": "object",
|
|
338
|
+
"properties": {
|
|
339
|
+
"base_id": {
|
|
340
|
+
"type": "string",
|
|
341
|
+
"description": "The ID of the Airtable base"
|
|
342
|
+
},
|
|
343
|
+
"table_id": {
|
|
344
|
+
"type": "string",
|
|
345
|
+
"description": "The ID or name of the table"
|
|
346
|
+
},
|
|
347
|
+
"records": {
|
|
348
|
+
"type": "array",
|
|
349
|
+
"description": "Array of records to create, each with a fields object",
|
|
350
|
+
"items": {
|
|
351
|
+
"type": "object",
|
|
352
|
+
"properties": {
|
|
353
|
+
"fields": {
|
|
354
|
+
"type": "object",
|
|
355
|
+
"description": "Field values for the record"
|
|
356
|
+
}
|
|
357
|
+
},
|
|
358
|
+
"required": [
|
|
359
|
+
"fields"
|
|
360
|
+
]
|
|
361
|
+
}
|
|
362
|
+
},
|
|
363
|
+
"typecast": {
|
|
364
|
+
"type": "boolean",
|
|
365
|
+
"description": "If true, Airtable will try to convert string values to the appropriate cell type"
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
"required": [
|
|
369
|
+
"base_id",
|
|
370
|
+
"table_id",
|
|
371
|
+
"records"
|
|
372
|
+
]
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"name": "update_records",
|
|
377
|
+
"description": "Update one or more existing records. Supports up to 10 records per call. Uses PATCH (partial update).",
|
|
378
|
+
"method": "PATCH",
|
|
379
|
+
"path": "/{base_id}/{table_id}",
|
|
380
|
+
"input_schema": {
|
|
381
|
+
"type": "object",
|
|
382
|
+
"properties": {
|
|
383
|
+
"base_id": {
|
|
384
|
+
"type": "string",
|
|
385
|
+
"description": "The ID of the Airtable base"
|
|
386
|
+
},
|
|
387
|
+
"table_id": {
|
|
388
|
+
"type": "string",
|
|
389
|
+
"description": "The ID or name of the table"
|
|
390
|
+
},
|
|
391
|
+
"records": {
|
|
392
|
+
"type": "array",
|
|
393
|
+
"description": "Array of records to update, each with id and fields",
|
|
394
|
+
"items": {
|
|
395
|
+
"type": "object",
|
|
396
|
+
"properties": {
|
|
397
|
+
"id": {
|
|
398
|
+
"type": "string",
|
|
399
|
+
"description": "Record ID"
|
|
400
|
+
},
|
|
401
|
+
"fields": {
|
|
402
|
+
"type": "object",
|
|
403
|
+
"description": "Fields to update"
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
"required": [
|
|
407
|
+
"id",
|
|
408
|
+
"fields"
|
|
409
|
+
]
|
|
410
|
+
}
|
|
411
|
+
},
|
|
412
|
+
"typecast": {
|
|
413
|
+
"type": "boolean",
|
|
414
|
+
"description": "If true, Airtable will try to convert string values to the appropriate cell type"
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
"required": [
|
|
418
|
+
"base_id",
|
|
419
|
+
"table_id",
|
|
420
|
+
"records"
|
|
421
|
+
]
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"name": "delete_records",
|
|
426
|
+
"description": "Delete one or more records by their IDs. Supports up to 10 records per call.",
|
|
427
|
+
"method": "DELETE",
|
|
428
|
+
"path": "/{base_id}/{table_id}",
|
|
429
|
+
"input_schema": {
|
|
430
|
+
"type": "object",
|
|
431
|
+
"properties": {
|
|
432
|
+
"base_id": {
|
|
433
|
+
"type": "string",
|
|
434
|
+
"description": "The ID of the Airtable base"
|
|
435
|
+
},
|
|
436
|
+
"table_id": {
|
|
437
|
+
"type": "string",
|
|
438
|
+
"description": "The ID or name of the table"
|
|
439
|
+
},
|
|
440
|
+
"record_ids": {
|
|
441
|
+
"type": "array",
|
|
442
|
+
"items": {
|
|
443
|
+
"type": "string"
|
|
444
|
+
},
|
|
445
|
+
"description": "Array of record IDs to delete (max 10)"
|
|
446
|
+
}
|
|
447
|
+
},
|
|
448
|
+
"required": [
|
|
449
|
+
"base_id",
|
|
450
|
+
"table_id",
|
|
451
|
+
"record_ids"
|
|
452
|
+
]
|
|
453
|
+
}
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"name": "list_views",
|
|
457
|
+
"description": "List all views in a table with their types (grid, form, calendar, gallery, kanban)",
|
|
458
|
+
"method": "GET",
|
|
459
|
+
"path": "/meta/bases/{base_id}/tables/{table_id}/views",
|
|
460
|
+
"input_schema": {
|
|
461
|
+
"type": "object",
|
|
462
|
+
"properties": {
|
|
463
|
+
"base_id": {
|
|
464
|
+
"type": "string",
|
|
465
|
+
"description": "The ID of the Airtable base"
|
|
466
|
+
},
|
|
467
|
+
"table_id": {
|
|
468
|
+
"type": "string",
|
|
469
|
+
"description": "The ID of the table"
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
"required": [
|
|
473
|
+
"base_id",
|
|
474
|
+
"table_id"
|
|
475
|
+
]
|
|
476
|
+
}
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"name": "create_webhook",
|
|
480
|
+
"description": "Create a webhook to receive notifications when records change in a base",
|
|
481
|
+
"method": "POST",
|
|
482
|
+
"path": "/bases/{base_id}/webhooks",
|
|
483
|
+
"input_schema": {
|
|
484
|
+
"type": "object",
|
|
485
|
+
"properties": {
|
|
486
|
+
"base_id": {
|
|
487
|
+
"type": "string",
|
|
488
|
+
"description": "The ID of the Airtable base"
|
|
489
|
+
},
|
|
490
|
+
"notificationUrl": {
|
|
491
|
+
"type": "string",
|
|
492
|
+
"description": "URL to receive webhook notifications"
|
|
493
|
+
},
|
|
494
|
+
"specification": {
|
|
495
|
+
"type": "object",
|
|
496
|
+
"description": "Webhook specification defining triggers",
|
|
497
|
+
"properties": {
|
|
498
|
+
"options": {
|
|
499
|
+
"type": "object",
|
|
500
|
+
"properties": {
|
|
501
|
+
"filters": {
|
|
502
|
+
"type": "object",
|
|
503
|
+
"description": "Filter conditions for the webhook"
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
},
|
|
510
|
+
"required": [
|
|
511
|
+
"base_id",
|
|
512
|
+
"notificationUrl"
|
|
513
|
+
]
|
|
514
|
+
}
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"name": "list_webhooks",
|
|
518
|
+
"description": "List all webhooks for a base",
|
|
214
519
|
"method": "GET",
|
|
215
|
-
"path": "/
|
|
520
|
+
"path": "/bases/{base_id}/webhooks",
|
|
216
521
|
"input_schema": {
|
|
217
522
|
"type": "object",
|
|
218
523
|
"properties": {
|
|
219
524
|
"base_id": {
|
|
220
525
|
"type": "string",
|
|
221
526
|
"description": "The ID of the Airtable base"
|
|
527
|
+
}
|
|
528
|
+
},
|
|
529
|
+
"required": [
|
|
530
|
+
"base_id"
|
|
531
|
+
]
|
|
532
|
+
}
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"name": "delete_webhook",
|
|
536
|
+
"description": "Delete a webhook by its ID",
|
|
537
|
+
"method": "DELETE",
|
|
538
|
+
"path": "/bases/{base_id}/webhooks/{webhook_id}",
|
|
539
|
+
"input_schema": {
|
|
540
|
+
"type": "object",
|
|
541
|
+
"properties": {
|
|
542
|
+
"base_id": {
|
|
543
|
+
"type": "string",
|
|
544
|
+
"description": "The ID of the Airtable base"
|
|
545
|
+
},
|
|
546
|
+
"webhook_id": {
|
|
547
|
+
"type": "string",
|
|
548
|
+
"description": "The ID of the webhook to delete"
|
|
549
|
+
}
|
|
550
|
+
},
|
|
551
|
+
"required": [
|
|
552
|
+
"base_id",
|
|
553
|
+
"webhook_id"
|
|
554
|
+
]
|
|
555
|
+
}
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"name": "get_webhook_payloads",
|
|
559
|
+
"description": "Retrieve webhook payloads (change notifications) for a webhook",
|
|
560
|
+
"method": "GET",
|
|
561
|
+
"path": "/bases/{base_id}/webhooks/{webhook_id}/payloads",
|
|
562
|
+
"input_schema": {
|
|
563
|
+
"type": "object",
|
|
564
|
+
"properties": {
|
|
565
|
+
"base_id": {
|
|
566
|
+
"type": "string",
|
|
567
|
+
"description": "The ID of the Airtable base"
|
|
568
|
+
},
|
|
569
|
+
"webhook_id": {
|
|
570
|
+
"type": "string",
|
|
571
|
+
"description": "The ID of the webhook"
|
|
222
572
|
},
|
|
223
|
-
"
|
|
573
|
+
"cursor": {
|
|
224
574
|
"type": "string",
|
|
225
|
-
"description": "
|
|
575
|
+
"description": "Cursor for pagination"
|
|
226
576
|
}
|
|
227
577
|
},
|
|
228
578
|
"required": [
|
|
229
579
|
"base_id",
|
|
230
|
-
"
|
|
580
|
+
"webhook_id"
|
|
231
581
|
]
|
|
232
582
|
}
|
|
233
583
|
}
|