@apteva/integrations 0.3.12 → 0.3.14
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/apollo.json +5 -5
- package/src/apps/assemblyai.json +2 -2
- package/src/apps/attio.json +2 -2
- package/src/apps/axiom.json +1 -1
- package/src/apps/beehiiv.json +5 -5
- package/src/apps/bitly.json +4 -4
- package/src/apps/bloobirds.json +1 -1
- package/src/apps/box.json +3 -3
- package/src/apps/brevo.json +20 -20
- package/src/apps/browse-ai.json +4 -4
- package/src/apps/bunny-cdn.json +4 -4
- package/src/apps/bunny-stream.json +8 -8
- package/src/apps/cal-com.json +1 -1
- package/src/apps/calendly.json +6 -6
- package/src/apps/canva.json +3 -3
- package/src/apps/cartesia.json +1 -1
- package/src/apps/composio.json +2 -2
- package/src/apps/convertkit.json +2 -2
- package/src/apps/core-video.json +7 -7
- package/src/apps/dialpad.json +2 -2
- package/src/apps/dnsimple.json +12 -12
- package/src/apps/eventbrite-events.json +16 -16
- package/src/apps/fal-ai.json +5 -5
- package/src/apps/folk.json +5 -5
- package/src/apps/gigs-marketplace.json +30 -30
- package/src/apps/github.json +31 -31
- package/src/apps/gmail.json +16 -16
- package/src/apps/gohighlevel.json +3 -3
- package/src/apps/google-ads.json +8 -8
- package/src/apps/google-calendar.json +16 -16
- package/src/apps/google-drive.json +7 -7
- package/src/apps/google-sheets.json +7 -7
- package/src/apps/hackernews.json +2 -2
- package/src/apps/helpscout.json +3 -3
- package/src/apps/hunter.json +5 -5
- package/src/apps/instagram-api.json +4 -6
- package/src/apps/late.json +17 -17
- package/src/apps/leadpages.json +4 -4
- package/src/apps/learning-platform.json +53 -53
- package/src/apps/marin-software.json +2 -2
- package/src/apps/notion.json +12 -12
- package/src/apps/omnikit-analytics.json +1 -1
- package/src/apps/omnikit-api-gateway.json +11 -11
- package/src/apps/omnikit-billing.json +21 -21
- package/src/apps/omnikit-cms.json +23 -23
- package/src/apps/omnikit-functions.json +6 -6
- package/src/apps/omnikit-intelligence.json +1 -1
- package/src/apps/omnikit-management.json +3 -3
- package/src/apps/omnikit-messaging.json +25 -25
- package/src/apps/omnikit-redirects.json +1 -1
- package/src/apps/omnikit-webhooks.json +3 -3
- package/src/apps/optinmonster.json +4 -4
- package/src/apps/paidkit.json +13 -13
- package/src/apps/polymarket.json +5 -5
- package/src/apps/porkbun.json +12 -12
- package/src/apps/rankbird.json +51 -56
- package/src/apps/skai.json +4 -4
- package/src/apps/smartly.json +1 -1
- package/src/apps/socialcast.json +13 -13
- package/src/apps/stripe-payments.json +9 -9
- package/src/apps/taskflow.json +11 -11
- package/src/apps/ticktick.json +3 -3
- package/src/apps/tiktok-api.json +78 -0
- package/src/apps/todoist.json +1 -1
- package/src/apps/twilio.json +28 -28
- package/src/apps/twitter-api.json +86 -30
package/src/apps/gmail.json
CHANGED
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
"name": "get_message",
|
|
139
139
|
"description": "Get full email message details including headers, body, and attachment metadata",
|
|
140
140
|
"method": "GET",
|
|
141
|
-
"path": "/users/me/messages
|
|
141
|
+
"path": "/users/me/messages/{messageId}",
|
|
142
142
|
"input_schema": {
|
|
143
143
|
"type": "object",
|
|
144
144
|
"properties": {
|
|
@@ -171,7 +171,7 @@
|
|
|
171
171
|
"name": "modify_message",
|
|
172
172
|
"description": "Add or remove labels from a message (e.g. mark as read/unread, star, archive, categorize)",
|
|
173
173
|
"method": "POST",
|
|
174
|
-
"path": "/users/me/messages
|
|
174
|
+
"path": "/users/me/messages/{messageId}/modify",
|
|
175
175
|
"input_schema": {
|
|
176
176
|
"type": "object",
|
|
177
177
|
"properties": {
|
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
"name": "trash_message",
|
|
204
204
|
"description": "Move a message to the trash",
|
|
205
205
|
"method": "POST",
|
|
206
|
-
"path": "/users/me/messages
|
|
206
|
+
"path": "/users/me/messages/{messageId}/trash",
|
|
207
207
|
"input_schema": {
|
|
208
208
|
"type": "object",
|
|
209
209
|
"properties": {
|
|
@@ -221,7 +221,7 @@
|
|
|
221
221
|
"name": "untrash_message",
|
|
222
222
|
"description": "Remove a message from trash and restore it",
|
|
223
223
|
"method": "POST",
|
|
224
|
-
"path": "/users/me/messages
|
|
224
|
+
"path": "/users/me/messages/{messageId}/untrash",
|
|
225
225
|
"input_schema": {
|
|
226
226
|
"type": "object",
|
|
227
227
|
"properties": {
|
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
"name": "delete_message",
|
|
240
240
|
"description": "Permanently delete a message (bypasses trash). This action is irreversible",
|
|
241
241
|
"method": "DELETE",
|
|
242
|
-
"path": "/users/me/messages
|
|
242
|
+
"path": "/users/me/messages/{messageId}",
|
|
243
243
|
"input_schema": {
|
|
244
244
|
"type": "object",
|
|
245
245
|
"properties": {
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
"name": "get_thread",
|
|
330
330
|
"description": "Get all messages in an email thread (conversation)",
|
|
331
331
|
"method": "GET",
|
|
332
|
-
"path": "/users/me/threads
|
|
332
|
+
"path": "/users/me/threads/{threadId}",
|
|
333
333
|
"input_schema": {
|
|
334
334
|
"type": "object",
|
|
335
335
|
"properties": {
|
|
@@ -358,7 +358,7 @@
|
|
|
358
358
|
"name": "modify_thread",
|
|
359
359
|
"description": "Add or remove labels from all messages in a thread",
|
|
360
360
|
"method": "POST",
|
|
361
|
-
"path": "/users/me/threads
|
|
361
|
+
"path": "/users/me/threads/{threadId}/modify",
|
|
362
362
|
"input_schema": {
|
|
363
363
|
"type": "object",
|
|
364
364
|
"properties": {
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
"name": "trash_thread",
|
|
391
391
|
"description": "Move an entire thread to trash",
|
|
392
392
|
"method": "POST",
|
|
393
|
-
"path": "/users/me/threads
|
|
393
|
+
"path": "/users/me/threads/{threadId}/trash",
|
|
394
394
|
"input_schema": {
|
|
395
395
|
"type": "object",
|
|
396
396
|
"properties": {
|
|
@@ -408,7 +408,7 @@
|
|
|
408
408
|
"name": "untrash_thread",
|
|
409
409
|
"description": "Restore a thread from trash",
|
|
410
410
|
"method": "POST",
|
|
411
|
-
"path": "/users/me/threads
|
|
411
|
+
"path": "/users/me/threads/{threadId}/untrash",
|
|
412
412
|
"input_schema": {
|
|
413
413
|
"type": "object",
|
|
414
414
|
"properties": {
|
|
@@ -436,7 +436,7 @@
|
|
|
436
436
|
"name": "get_label",
|
|
437
437
|
"description": "Get details for a specific label including message and thread counts",
|
|
438
438
|
"method": "GET",
|
|
439
|
-
"path": "/users/me/labels
|
|
439
|
+
"path": "/users/me/labels/{labelId}",
|
|
440
440
|
"input_schema": {
|
|
441
441
|
"type": "object",
|
|
442
442
|
"properties": {
|
|
@@ -505,7 +505,7 @@
|
|
|
505
505
|
"name": "update_label",
|
|
506
506
|
"description": "Update a label's name, visibility, or color",
|
|
507
507
|
"method": "PATCH",
|
|
508
|
-
"path": "/users/me/labels
|
|
508
|
+
"path": "/users/me/labels/{labelId}",
|
|
509
509
|
"input_schema": {
|
|
510
510
|
"type": "object",
|
|
511
511
|
"properties": {
|
|
@@ -553,7 +553,7 @@
|
|
|
553
553
|
"name": "delete_label",
|
|
554
554
|
"description": "Permanently delete a label. Messages with this label are not deleted, only the label is removed",
|
|
555
555
|
"method": "DELETE",
|
|
556
|
-
"path": "/users/me/labels
|
|
556
|
+
"path": "/users/me/labels/{labelId}",
|
|
557
557
|
"input_schema": {
|
|
558
558
|
"type": "object",
|
|
559
559
|
"properties": {
|
|
@@ -596,7 +596,7 @@
|
|
|
596
596
|
"name": "get_draft",
|
|
597
597
|
"description": "Get a specific draft's content and metadata",
|
|
598
598
|
"method": "GET",
|
|
599
|
-
"path": "/users/me/drafts
|
|
599
|
+
"path": "/users/me/drafts/{draftId}",
|
|
600
600
|
"input_schema": {
|
|
601
601
|
"type": "object",
|
|
602
602
|
"properties": {
|
|
@@ -673,7 +673,7 @@
|
|
|
673
673
|
"name": "delete_draft",
|
|
674
674
|
"description": "Permanently delete a draft",
|
|
675
675
|
"method": "DELETE",
|
|
676
|
-
"path": "/users/me/drafts
|
|
676
|
+
"path": "/users/me/drafts/{draftId}",
|
|
677
677
|
"input_schema": {
|
|
678
678
|
"type": "object",
|
|
679
679
|
"properties": {
|
|
@@ -709,7 +709,7 @@
|
|
|
709
709
|
"name": "get_attachment",
|
|
710
710
|
"description": "Download an email attachment by message ID and attachment ID. Returns base64-encoded attachment data",
|
|
711
711
|
"method": "GET",
|
|
712
|
-
"path": "/users/me/messages
|
|
712
|
+
"path": "/users/me/messages/{messageId}/attachments/{attachmentId}",
|
|
713
713
|
"input_schema": {
|
|
714
714
|
"type": "object",
|
|
715
715
|
"properties": {
|
|
@@ -819,7 +819,7 @@
|
|
|
819
819
|
"name": "delete_filter",
|
|
820
820
|
"description": "Delete an email filter rule",
|
|
821
821
|
"method": "DELETE",
|
|
822
|
-
"path": "/users/me/settings/filters
|
|
822
|
+
"path": "/users/me/settings/filters/{filterId}",
|
|
823
823
|
"input_schema": {
|
|
824
824
|
"type": "object",
|
|
825
825
|
"properties": {
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
"name": "update_contact",
|
|
176
176
|
"description": "Update an existing contact in GoHighLevel. Pass the contactId in the URL and any fields to update in the body. Supports updating name, email, phone, tags, custom fields, and other attributes.",
|
|
177
177
|
"method": "PUT",
|
|
178
|
-
"path": "/contacts
|
|
178
|
+
"path": "/contacts/{{param.contactId}}",
|
|
179
179
|
"input_schema": {
|
|
180
180
|
"type": "object",
|
|
181
181
|
"properties": {
|
|
@@ -261,7 +261,7 @@
|
|
|
261
261
|
"name": "add_contact_tags",
|
|
262
262
|
"description": "Add one or more tags to an existing contact in GoHighLevel. Provide the contactId and an array of tag names to add.",
|
|
263
263
|
"method": "POST",
|
|
264
|
-
"path": "/contacts
|
|
264
|
+
"path": "/contacts/{{param.contactId}}/tags",
|
|
265
265
|
"input_schema": {
|
|
266
266
|
"type": "object",
|
|
267
267
|
"properties": {
|
|
@@ -287,7 +287,7 @@
|
|
|
287
287
|
"name": "remove_contact_tags",
|
|
288
288
|
"description": "Remove one or more tags from an existing contact in GoHighLevel. Provide the contactId and an array of tag names to remove.",
|
|
289
289
|
"method": "DELETE",
|
|
290
|
-
"path": "/contacts
|
|
290
|
+
"path": "/contacts/{{param.contactId}}/tags",
|
|
291
291
|
"input_schema": {
|
|
292
292
|
"type": "object",
|
|
293
293
|
"properties": {
|
package/src/apps/google-ads.json
CHANGED
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"name": "search",
|
|
57
57
|
"description": "Run a Google Ads Query Language (GAQL) query to search for campaigns, ad groups, ads, keywords, or pull performance metrics. Examples:\n- List campaigns: SELECT campaign.id, campaign.name, campaign.status FROM campaign\n- Campaign performance: SELECT campaign.name, metrics.impressions, metrics.clicks, metrics.cost_micros FROM campaign WHERE segments.date DURING LAST_30_DAYS\n- Ad group performance: SELECT ad_group.name, metrics.clicks, metrics.conversions FROM ad_group WHERE campaign.id = 123\n- Keywords: SELECT ad_group_criterion.keyword.text, metrics.clicks FROM keyword_view WHERE segments.date DURING LAST_7_DAYS\n- Search terms: SELECT search_term_view.search_term, metrics.clicks FROM search_term_view WHERE segments.date DURING LAST_7_DAYS\n- Ads: SELECT ad_group_ad.ad.id, ad_group_ad.ad.responsive_search_ad.headlines FROM ad_group_ad",
|
|
58
58
|
"method": "POST",
|
|
59
|
-
"path": "/customers
|
|
59
|
+
"path": "/customers/{customer_id}/googleAds:search",
|
|
60
60
|
"input_schema": {
|
|
61
61
|
"type": "object",
|
|
62
62
|
"properties": {
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"name": "search_stream",
|
|
88
88
|
"description": "Run a GAQL query using streaming — returns all results at once without pagination. Better for large result sets. Same query syntax as google-ads-search.",
|
|
89
89
|
"method": "POST",
|
|
90
|
-
"path": "/customers
|
|
90
|
+
"path": "/customers/{customer_id}/googleAds:searchStream",
|
|
91
91
|
"input_schema": {
|
|
92
92
|
"type": "object",
|
|
93
93
|
"properties": {
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"name": "campaign_mutate",
|
|
111
111
|
"description": "Create, update, or remove campaigns. Operations is an array where each item has one of: 'create' (new campaign object), 'update' (campaign object with resourceName) + 'updateMask', or 'remove' (resource name string).\n\nCreate example: {\"create\": {\"name\": \"My Campaign\", \"status\": \"PAUSED\", \"advertisingChannelType\": \"SEARCH\", \"campaignBudget\": \"customers/1234/campaignBudgets/5678\"}}\n\nUpdate example: {\"update\": {\"resourceName\": \"customers/1234/campaigns/5678\", \"status\": \"ENABLED\"}, \"updateMask\": \"status\"}\n\nRemove example: {\"remove\": \"customers/1234/campaigns/5678\"}",
|
|
112
112
|
"method": "POST",
|
|
113
|
-
"path": "/customers
|
|
113
|
+
"path": "/customers/{customer_id}/campaigns:mutate",
|
|
114
114
|
"input_schema": {
|
|
115
115
|
"type": "object",
|
|
116
116
|
"properties": {
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"name": "ad_group_mutate",
|
|
137
137
|
"description": "Create, update, or remove ad groups.\n\nCreate example: {\"create\": {\"name\": \"My Ad Group\", \"campaign\": \"customers/1234/campaigns/5678\", \"status\": \"ENABLED\", \"cpcBidMicros\": \"1000000\"}}\n\nUpdate example: {\"update\": {\"resourceName\": \"customers/1234/adGroups/9012\", \"cpcBidMicros\": \"1500000\"}, \"updateMask\": \"cpcBidMicros\"}\n\nRemove example: {\"remove\": \"customers/1234/adGroups/9012\"}",
|
|
138
138
|
"method": "POST",
|
|
139
|
-
"path": "/customers
|
|
139
|
+
"path": "/customers/{customer_id}/adGroups:mutate",
|
|
140
140
|
"input_schema": {
|
|
141
141
|
"type": "object",
|
|
142
142
|
"properties": {
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
"name": "ad_mutate",
|
|
163
163
|
"description": "Create, update, or remove ads (ad group ads).\n\nCreate responsive search ad example: {\"create\": {\"adGroup\": \"customers/1234/adGroups/5678\", \"status\": \"ENABLED\", \"ad\": {\"responsiveSearchAd\": {\"headlines\": [{\"text\": \"Headline 1\"}, {\"text\": \"Headline 2\"}, {\"text\": \"Headline 3\"}], \"descriptions\": [{\"text\": \"Description 1\"}, {\"text\": \"Description 2\"}]}, \"finalUrls\": [\"https://example.com\"]}}}\n\nRemove example: {\"remove\": \"customers/1234/adGroupAds/5678~9012\"}",
|
|
164
164
|
"method": "POST",
|
|
165
|
-
"path": "/customers
|
|
165
|
+
"path": "/customers/{customer_id}/adGroupAds:mutate",
|
|
166
166
|
"input_schema": {
|
|
167
167
|
"type": "object",
|
|
168
168
|
"properties": {
|
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
"name": "keyword_mutate",
|
|
189
189
|
"description": "Create, update, or remove keywords (ad group criteria).\n\nCreate keyword example: {\"create\": {\"adGroup\": \"customers/1234/adGroups/5678\", \"keyword\": {\"text\": \"buy running shoes\", \"matchType\": \"PHRASE\"}, \"status\": \"ENABLED\", \"cpcBidMicros\": \"500000\"}}\n\nRemove example: {\"remove\": \"customers/1234/adGroupCriteria/5678~9012\"}",
|
|
190
190
|
"method": "POST",
|
|
191
|
-
"path": "/customers
|
|
191
|
+
"path": "/customers/{customer_id}/adGroupCriteria:mutate",
|
|
192
192
|
"input_schema": {
|
|
193
193
|
"type": "object",
|
|
194
194
|
"properties": {
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
"name": "budget_mutate",
|
|
215
215
|
"description": "Create, update, or remove campaign budgets. Amounts are in micros (1 USD = 1,000,000 micros).\n\nCreate example: {\"create\": {\"name\": \"Daily Budget $50\", \"amountMicros\": \"50000000\", \"deliveryMethod\": \"STANDARD\"}}\n\nUpdate example: {\"update\": {\"resourceName\": \"customers/1234/campaignBudgets/5678\", \"amountMicros\": \"75000000\"}, \"updateMask\": \"amountMicros\"}",
|
|
216
216
|
"method": "POST",
|
|
217
|
-
"path": "/customers
|
|
217
|
+
"path": "/customers/{customer_id}/campaignBudgets:mutate",
|
|
218
218
|
"input_schema": {
|
|
219
219
|
"type": "object",
|
|
220
220
|
"properties": {
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
"name": "bulk_mutate",
|
|
241
241
|
"description": "Create or modify multiple resource types in a single atomic request — budgets, campaigns, ad groups, and ads together. Uses temporary resource IDs (negative numbers) to reference resources created in the same request.\n\nExample creating a full campaign:\n{\"mutateOperations\": [{\"campaignBudgetOperation\": {\"create\": {\"resourceName\": \"customers/1234/campaignBudgets/-1\", \"name\": \"Budget\", \"amountMicros\": \"50000000\"}}}, {\"campaignOperation\": {\"create\": {\"resourceName\": \"customers/1234/campaigns/-2\", \"name\": \"My Campaign\", \"campaignBudget\": \"customers/1234/campaignBudgets/-1\", \"advertisingChannelType\": \"SEARCH\", \"status\": \"PAUSED\"}}}, {\"adGroupOperation\": {\"create\": {\"campaign\": \"customers/1234/campaigns/-2\", \"name\": \"Ad Group 1\"}}}]}",
|
|
242
242
|
"method": "POST",
|
|
243
|
-
"path": "/customers
|
|
243
|
+
"path": "/customers/{customer_id}/googleAds:mutate",
|
|
244
244
|
"input_schema": {
|
|
245
245
|
"type": "object",
|
|
246
246
|
"properties": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"name": "list_events",
|
|
43
43
|
"description": "List events from a calendar with optional time range, search query, and pagination",
|
|
44
44
|
"method": "GET",
|
|
45
|
-
"path": "/calendars
|
|
45
|
+
"path": "/calendars/{calendarId}/events",
|
|
46
46
|
"input_schema": {
|
|
47
47
|
"type": "object",
|
|
48
48
|
"properties": {
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"name": "get_event",
|
|
103
103
|
"description": "Get detailed information about a specific calendar event",
|
|
104
104
|
"method": "GET",
|
|
105
|
-
"path": "/calendars
|
|
105
|
+
"path": "/calendars/{calendarId}/events/{eventId}",
|
|
106
106
|
"input_schema": {
|
|
107
107
|
"type": "object",
|
|
108
108
|
"properties": {
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
"name": "create_event",
|
|
130
130
|
"description": "Create a new calendar event with optional attendees, location, reminders, and recurrence",
|
|
131
131
|
"method": "POST",
|
|
132
|
-
"path": "/calendars
|
|
132
|
+
"path": "/calendars/{calendarId}/events",
|
|
133
133
|
"input_schema": {
|
|
134
134
|
"type": "object",
|
|
135
135
|
"properties": {
|
|
@@ -350,7 +350,7 @@
|
|
|
350
350
|
"name": "update_event",
|
|
351
351
|
"description": "Update an existing calendar event (partial update - only provided fields are changed)",
|
|
352
352
|
"method": "PATCH",
|
|
353
|
-
"path": "/calendars
|
|
353
|
+
"path": "/calendars/{calendarId}/events/{eventId}",
|
|
354
354
|
"input_schema": {
|
|
355
355
|
"type": "object",
|
|
356
356
|
"properties": {
|
|
@@ -496,7 +496,7 @@
|
|
|
496
496
|
"name": "delete_event",
|
|
497
497
|
"description": "Delete a calendar event",
|
|
498
498
|
"method": "DELETE",
|
|
499
|
-
"path": "/calendars
|
|
499
|
+
"path": "/calendars/{calendarId}/events/{eventId}",
|
|
500
500
|
"input_schema": {
|
|
501
501
|
"type": "object",
|
|
502
502
|
"properties": {
|
|
@@ -529,7 +529,7 @@
|
|
|
529
529
|
"name": "move_event",
|
|
530
530
|
"description": "Move an event from one calendar to another",
|
|
531
531
|
"method": "POST",
|
|
532
|
-
"path": "/calendars
|
|
532
|
+
"path": "/calendars/{calendarId}/events/{eventId}/move",
|
|
533
533
|
"input_schema": {
|
|
534
534
|
"type": "object",
|
|
535
535
|
"properties": {
|
|
@@ -566,7 +566,7 @@
|
|
|
566
566
|
"name": "quick_add",
|
|
567
567
|
"description": "Create an event from a natural language text string (e.g. 'Dinner with John tomorrow at 7pm at Pizza Place')",
|
|
568
568
|
"method": "POST",
|
|
569
|
-
"path": "/calendars
|
|
569
|
+
"path": "/calendars/{calendarId}/events/quickAdd",
|
|
570
570
|
"input_schema": {
|
|
571
571
|
"type": "object",
|
|
572
572
|
"properties": {
|
|
@@ -598,7 +598,7 @@
|
|
|
598
598
|
"name": "get_recurring_instances",
|
|
599
599
|
"description": "Get all instances of a recurring event within a time range",
|
|
600
600
|
"method": "GET",
|
|
601
|
-
"path": "/calendars
|
|
601
|
+
"path": "/calendars/{calendarId}/events/{eventId}/instances",
|
|
602
602
|
"input_schema": {
|
|
603
603
|
"type": "object",
|
|
604
604
|
"properties": {
|
|
@@ -676,7 +676,7 @@
|
|
|
676
676
|
"name": "get_calendar",
|
|
677
677
|
"description": "Get metadata for a specific calendar",
|
|
678
678
|
"method": "GET",
|
|
679
|
-
"path": "/calendars
|
|
679
|
+
"path": "/calendars/{calendarId}",
|
|
680
680
|
"input_schema": {
|
|
681
681
|
"type": "object",
|
|
682
682
|
"properties": {
|
|
@@ -724,7 +724,7 @@
|
|
|
724
724
|
"name": "update_calendar",
|
|
725
725
|
"description": "Update a calendar's name, description, time zone, or location",
|
|
726
726
|
"method": "PATCH",
|
|
727
|
-
"path": "/calendars
|
|
727
|
+
"path": "/calendars/{calendarId}",
|
|
728
728
|
"input_schema": {
|
|
729
729
|
"type": "object",
|
|
730
730
|
"properties": {
|
|
@@ -758,7 +758,7 @@
|
|
|
758
758
|
"name": "delete_calendar",
|
|
759
759
|
"description": "Permanently delete a secondary calendar. Cannot delete the primary calendar",
|
|
760
760
|
"method": "DELETE",
|
|
761
|
-
"path": "/calendars
|
|
761
|
+
"path": "/calendars/{calendarId}",
|
|
762
762
|
"input_schema": {
|
|
763
763
|
"type": "object",
|
|
764
764
|
"properties": {
|
|
@@ -776,7 +776,7 @@
|
|
|
776
776
|
"name": "clear_calendar",
|
|
777
777
|
"description": "Clear all events from a primary calendar. Only works on the user's primary calendar",
|
|
778
778
|
"method": "POST",
|
|
779
|
-
"path": "/calendars
|
|
779
|
+
"path": "/calendars/{calendarId}/clear",
|
|
780
780
|
"input_schema": {
|
|
781
781
|
"type": "object",
|
|
782
782
|
"properties": {
|
|
@@ -846,7 +846,7 @@
|
|
|
846
846
|
"name": "list_acl",
|
|
847
847
|
"description": "List access control rules (sharing settings) for a calendar",
|
|
848
848
|
"method": "GET",
|
|
849
|
-
"path": "/calendars
|
|
849
|
+
"path": "/calendars/{calendarId}/acl",
|
|
850
850
|
"input_schema": {
|
|
851
851
|
"type": "object",
|
|
852
852
|
"properties": {
|
|
@@ -866,7 +866,7 @@
|
|
|
866
866
|
"name": "share_calendar",
|
|
867
867
|
"description": "Share a calendar with a user or group by adding an access control rule",
|
|
868
868
|
"method": "POST",
|
|
869
|
-
"path": "/calendars
|
|
869
|
+
"path": "/calendars/{calendarId}/acl",
|
|
870
870
|
"input_schema": {
|
|
871
871
|
"type": "object",
|
|
872
872
|
"properties": {
|
|
@@ -924,7 +924,7 @@
|
|
|
924
924
|
"name": "remove_sharing",
|
|
925
925
|
"description": "Remove an access control rule (unshare a calendar with a user)",
|
|
926
926
|
"method": "DELETE",
|
|
927
|
-
"path": "/calendars
|
|
927
|
+
"path": "/calendars/{calendarId}/acl/{ruleId}",
|
|
928
928
|
"input_schema": {
|
|
929
929
|
"type": "object",
|
|
930
930
|
"properties": {
|
|
@@ -972,7 +972,7 @@
|
|
|
972
972
|
"name": "watch_events",
|
|
973
973
|
"description": "Set up push notifications for changes to events in a calendar via a webhook",
|
|
974
974
|
"method": "POST",
|
|
975
|
-
"path": "/calendars
|
|
975
|
+
"path": "/calendars/{calendarId}/events/watch",
|
|
976
976
|
"input_schema": {
|
|
977
977
|
"type": "object",
|
|
978
978
|
"properties": {
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"name": "get_file",
|
|
84
84
|
"description": "Get metadata for a specific file by ID",
|
|
85
85
|
"method": "GET",
|
|
86
|
-
"path": "/drive/v3/files
|
|
86
|
+
"path": "/drive/v3/files/{fileId}",
|
|
87
87
|
"input_schema": {
|
|
88
88
|
"type": "object",
|
|
89
89
|
"properties": {
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
"name": "share_file",
|
|
176
176
|
"description": "Share a file or folder by creating a permission. Use type='anyone' for public link sharing.",
|
|
177
177
|
"method": "POST",
|
|
178
|
-
"path": "/drive/v3/files
|
|
178
|
+
"path": "/drive/v3/files/{fileId}/permissions",
|
|
179
179
|
"input_schema": {
|
|
180
180
|
"type": "object",
|
|
181
181
|
"properties": {
|
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
"name": "delete_file",
|
|
225
225
|
"description": "Permanently delete a file or folder from Google Drive (skips trash)",
|
|
226
226
|
"method": "DELETE",
|
|
227
|
-
"path": "/drive/v3/files
|
|
227
|
+
"path": "/drive/v3/files/{fileId}",
|
|
228
228
|
"input_schema": {
|
|
229
229
|
"type": "object",
|
|
230
230
|
"properties": {
|
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
"name": "copy_file",
|
|
243
243
|
"description": "Create a copy of a file in Google Drive",
|
|
244
244
|
"method": "POST",
|
|
245
|
-
"path": "/drive/v3/files
|
|
245
|
+
"path": "/drive/v3/files/{fileId}/copy",
|
|
246
246
|
"input_schema": {
|
|
247
247
|
"type": "object",
|
|
248
248
|
"properties": {
|
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
"name": "move_file",
|
|
272
272
|
"description": "Move a file to a different folder by updating its parents",
|
|
273
273
|
"method": "PATCH",
|
|
274
|
-
"path": "/drive/v3/files
|
|
274
|
+
"path": "/drive/v3/files/{fileId}",
|
|
275
275
|
"input_schema": {
|
|
276
276
|
"type": "object",
|
|
277
277
|
"properties": {
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"name": "rename_file",
|
|
299
299
|
"description": "Rename a file or folder in Google Drive",
|
|
300
300
|
"method": "PATCH",
|
|
301
|
-
"path": "/drive/v3/files
|
|
301
|
+
"path": "/drive/v3/files/{fileId}",
|
|
302
302
|
"input_schema": {
|
|
303
303
|
"type": "object",
|
|
304
304
|
"properties": {
|
|
@@ -321,7 +321,7 @@
|
|
|
321
321
|
"name": "export_file",
|
|
322
322
|
"description": "Export a Google Workspace file (Doc, Sheet, Slides) to a different format like PDF, CSV, plain text, etc.",
|
|
323
323
|
"method": "GET",
|
|
324
|
-
"path": "/drive/v3/files
|
|
324
|
+
"path": "/drive/v3/files/{fileId}/export",
|
|
325
325
|
"input_schema": {
|
|
326
326
|
"type": "object",
|
|
327
327
|
"properties": {
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"name": "get_spreadsheet",
|
|
86
86
|
"description": "Get spreadsheet metadata including sheet names, properties, and named ranges",
|
|
87
87
|
"method": "GET",
|
|
88
|
-
"path": "/spreadsheets
|
|
88
|
+
"path": "/spreadsheets/{spreadsheetId}",
|
|
89
89
|
"input_schema": {
|
|
90
90
|
"type": "object",
|
|
91
91
|
"properties": {
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"name": "read_range",
|
|
109
109
|
"description": "Read values from a range in a spreadsheet using A1 notation (e.g. 'Sheet1!A1:D10')",
|
|
110
110
|
"method": "GET",
|
|
111
|
-
"path": "/spreadsheets
|
|
111
|
+
"path": "/spreadsheets/{spreadsheetId}/values/{range}",
|
|
112
112
|
"input_schema": {
|
|
113
113
|
"type": "object",
|
|
114
114
|
"properties": {
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
"name": "write_range",
|
|
160
160
|
"description": "Write values to a range in a spreadsheet. Overwrites existing data in the range.",
|
|
161
161
|
"method": "PUT",
|
|
162
|
-
"path": "/spreadsheets
|
|
162
|
+
"path": "/spreadsheets/{spreadsheetId}/values/{range}",
|
|
163
163
|
"input_schema": {
|
|
164
164
|
"type": "object",
|
|
165
165
|
"properties": {
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
"name": "append_rows",
|
|
200
200
|
"description": "Append rows of data after the last row with data in a sheet",
|
|
201
201
|
"method": "POST",
|
|
202
|
-
"path": "/spreadsheets
|
|
202
|
+
"path": "/spreadsheets/{spreadsheetId}/values/{range}:append",
|
|
203
203
|
"input_schema": {
|
|
204
204
|
"type": "object",
|
|
205
205
|
"properties": {
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
"name": "clear_range",
|
|
249
249
|
"description": "Clear values from a range in a spreadsheet (keeps formatting)",
|
|
250
250
|
"method": "POST",
|
|
251
|
-
"path": "/spreadsheets
|
|
251
|
+
"path": "/spreadsheets/{spreadsheetId}/values/{range}:clear",
|
|
252
252
|
"input_schema": {
|
|
253
253
|
"type": "object",
|
|
254
254
|
"properties": {
|
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
"name": "batch_get",
|
|
272
272
|
"description": "Read multiple ranges from a spreadsheet in a single request",
|
|
273
273
|
"method": "GET",
|
|
274
|
-
"path": "/spreadsheets
|
|
274
|
+
"path": "/spreadsheets/{spreadsheetId}/values:batchGet",
|
|
275
275
|
"input_schema": {
|
|
276
276
|
"type": "object",
|
|
277
277
|
"properties": {
|
|
@@ -304,7 +304,7 @@
|
|
|
304
304
|
"name": "add_sheet",
|
|
305
305
|
"description": "Add a new sheet (tab) to an existing spreadsheet",
|
|
306
306
|
"method": "POST",
|
|
307
|
-
"path": "/spreadsheets
|
|
307
|
+
"path": "/spreadsheets/{spreadsheetId}:batchUpdate",
|
|
308
308
|
"input_schema": {
|
|
309
309
|
"type": "object",
|
|
310
310
|
"properties": {
|
package/src/apps/hackernews.json
CHANGED
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"name": "get_item",
|
|
92
92
|
"description": "Get a specific Hacker News item by ID. Items can be stories, comments, jobs, Ask HNs, or polls. Returns title, url, score, by (author), time, descendants (comment count), kids (child comment IDs), text, and type.",
|
|
93
93
|
"method": "GET",
|
|
94
|
-
"path": "/item
|
|
94
|
+
"path": "/item/{id}.json",
|
|
95
95
|
"input_schema": {
|
|
96
96
|
"type": "object",
|
|
97
97
|
"properties": {
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"name": "get_user",
|
|
110
110
|
"description": "Get a Hacker News user profile by username. Returns id, created (unix timestamp), karma, about (bio in HTML), and submitted (array of item IDs the user has posted).",
|
|
111
111
|
"method": "GET",
|
|
112
|
-
"path": "/user
|
|
112
|
+
"path": "/user/{username}.json",
|
|
113
113
|
"input_schema": {
|
|
114
114
|
"type": "object",
|
|
115
115
|
"properties": {
|
package/src/apps/helpscout.json
CHANGED
|
@@ -539,7 +539,7 @@
|
|
|
539
539
|
"name": "get_webhook",
|
|
540
540
|
"description": "Get a specific webhook by ID.",
|
|
541
541
|
"method": "GET",
|
|
542
|
-
"path": "/webhooks
|
|
542
|
+
"path": "/webhooks/{{param.webhook_id}}",
|
|
543
543
|
"input_schema": {
|
|
544
544
|
"type": "object",
|
|
545
545
|
"properties": {
|
|
@@ -605,7 +605,7 @@
|
|
|
605
605
|
"name": "update_webhook",
|
|
606
606
|
"description": "Update an existing webhook.",
|
|
607
607
|
"method": "PUT",
|
|
608
|
-
"path": "/webhooks
|
|
608
|
+
"path": "/webhooks/{{param.webhook_id}}",
|
|
609
609
|
"input_schema": {
|
|
610
610
|
"type": "object",
|
|
611
611
|
"properties": {
|
|
@@ -646,7 +646,7 @@
|
|
|
646
646
|
"name": "delete_webhook",
|
|
647
647
|
"description": "Delete a webhook.",
|
|
648
648
|
"method": "DELETE",
|
|
649
|
-
"path": "/webhooks
|
|
649
|
+
"path": "/webhooks/{{param.webhook_id}}",
|
|
650
650
|
"input_schema": {
|
|
651
651
|
"type": "object",
|
|
652
652
|
"properties": {
|
package/src/apps/hunter.json
CHANGED
|
@@ -250,7 +250,7 @@
|
|
|
250
250
|
"name": "lead_get",
|
|
251
251
|
"description": "Get a specific lead by ID.",
|
|
252
252
|
"method": "GET",
|
|
253
|
-
"path": "/leads
|
|
253
|
+
"path": "/leads/{lead_id}",
|
|
254
254
|
"input_schema": {
|
|
255
255
|
"type": "object",
|
|
256
256
|
"properties": {
|
|
@@ -326,7 +326,7 @@
|
|
|
326
326
|
"name": "lead_update",
|
|
327
327
|
"description": "Update an existing lead.",
|
|
328
328
|
"method": "PUT",
|
|
329
|
-
"path": "/leads
|
|
329
|
+
"path": "/leads/{lead_id}",
|
|
330
330
|
"input_schema": {
|
|
331
331
|
"type": "object",
|
|
332
332
|
"properties": {
|
|
@@ -376,7 +376,7 @@
|
|
|
376
376
|
"name": "lead_delete",
|
|
377
377
|
"description": "Delete a lead by ID.",
|
|
378
378
|
"method": "DELETE",
|
|
379
|
-
"path": "/leads
|
|
379
|
+
"path": "/leads/{lead_id}",
|
|
380
380
|
"input_schema": {
|
|
381
381
|
"type": "object",
|
|
382
382
|
"properties": {
|
|
@@ -454,7 +454,7 @@
|
|
|
454
454
|
"name": "campaign_add_recipients",
|
|
455
455
|
"description": "Add recipients to an email campaign by email addresses or lead IDs (max 50 per request).",
|
|
456
456
|
"method": "POST",
|
|
457
|
-
"path": "/campaigns
|
|
457
|
+
"path": "/campaigns/{campaign_id}/recipients",
|
|
458
458
|
"input_schema": {
|
|
459
459
|
"type": "object",
|
|
460
460
|
"properties": {
|
|
@@ -486,7 +486,7 @@
|
|
|
486
486
|
"name": "campaign_start",
|
|
487
487
|
"description": "Start an email campaign that is in draft state. Campaign must have recipients and content configured.",
|
|
488
488
|
"method": "POST",
|
|
489
|
-
"path": "/campaigns
|
|
489
|
+
"path": "/campaigns/{campaign_id}/start",
|
|
490
490
|
"input_schema": {
|
|
491
491
|
"type": "object",
|
|
492
492
|
"properties": {
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
},
|
|
126
126
|
{
|
|
127
127
|
"name": "create_media_container",
|
|
128
|
-
"description": "Step 1 of 2 to publish on Instagram. Create a media container with image/video URL and caption. Returns containerId for step 2 (publish-media-container). For videos: use sync=true to wait for processing to complete automatically (recommended), or poll manually with get-container-status.",
|
|
128
|
+
"description": "Step 1 of 2 to publish on Instagram. Create a media container with image/video URL and caption. Returns containerId for step 2 (publish-media-container). For videos: use sync=true to wait for processing to complete automatically (recommended), or poll manually with get-container-status.\n\nFor CAROUSEL posts: 1) Create child containers with isCarouselItem=true (each with imageUrl or videoUrl, mediaType IMAGE or REELS). 2) Create parent carousel container via Graph API: POST /{instagramAccountId}/media with media_type=CAROUSEL, children={comma-separated child IDs}, and caption. 3) Publish the parent container with publish-media-container. Up to 10 items per carousel.",
|
|
129
129
|
"method": "POST",
|
|
130
130
|
"path": "/create-media-container",
|
|
131
131
|
"input_schema": {
|
|
@@ -395,7 +395,7 @@
|
|
|
395
395
|
},
|
|
396
396
|
{
|
|
397
397
|
"name": "get_media_insights",
|
|
398
|
-
"description": "Get analytics and insights for a specific Instagram media post",
|
|
398
|
+
"description": "Get analytics and insights for a specific Instagram media post. Note: 'plays' metric was deprecated in 2025 — use 'views' instead.",
|
|
399
399
|
"method": "GET",
|
|
400
400
|
"path": "/get-media-insights",
|
|
401
401
|
"input_schema": {
|
|
@@ -416,8 +416,7 @@
|
|
|
416
416
|
"saved",
|
|
417
417
|
"likes",
|
|
418
418
|
"comments",
|
|
419
|
-
"shares"
|
|
420
|
-
"plays"
|
|
419
|
+
"shares"
|
|
421
420
|
]
|
|
422
421
|
},
|
|
423
422
|
"default": [
|
|
@@ -426,8 +425,7 @@
|
|
|
426
425
|
"saved",
|
|
427
426
|
"likes",
|
|
428
427
|
"comments",
|
|
429
|
-
"shares"
|
|
430
|
-
"plays"
|
|
428
|
+
"shares"
|
|
431
429
|
]
|
|
432
430
|
}
|
|
433
431
|
},
|