@apteva/integrations 0.3.13 → 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.
Files changed (67) hide show
  1. package/package.json +1 -1
  2. package/src/apps/apollo.json +5 -5
  3. package/src/apps/assemblyai.json +2 -2
  4. package/src/apps/attio.json +2 -2
  5. package/src/apps/axiom.json +1 -1
  6. package/src/apps/beehiiv.json +5 -5
  7. package/src/apps/bitly.json +4 -4
  8. package/src/apps/bloobirds.json +1 -1
  9. package/src/apps/box.json +3 -3
  10. package/src/apps/brevo.json +20 -20
  11. package/src/apps/browse-ai.json +4 -4
  12. package/src/apps/bunny-cdn.json +4 -4
  13. package/src/apps/bunny-stream.json +8 -8
  14. package/src/apps/cal-com.json +1 -1
  15. package/src/apps/calendly.json +6 -6
  16. package/src/apps/canva.json +3 -3
  17. package/src/apps/cartesia.json +1 -1
  18. package/src/apps/composio.json +2 -2
  19. package/src/apps/convertkit.json +2 -2
  20. package/src/apps/core-video.json +7 -7
  21. package/src/apps/dialpad.json +2 -2
  22. package/src/apps/dnsimple.json +12 -12
  23. package/src/apps/eventbrite-events.json +16 -16
  24. package/src/apps/fal-ai.json +5 -5
  25. package/src/apps/folk.json +5 -5
  26. package/src/apps/gigs-marketplace.json +30 -30
  27. package/src/apps/github.json +31 -31
  28. package/src/apps/gmail.json +16 -16
  29. package/src/apps/gohighlevel.json +3 -3
  30. package/src/apps/google-ads.json +8 -8
  31. package/src/apps/google-calendar.json +16 -16
  32. package/src/apps/google-drive.json +7 -7
  33. package/src/apps/google-sheets.json +7 -7
  34. package/src/apps/hackernews.json +2 -2
  35. package/src/apps/helpscout.json +3 -3
  36. package/src/apps/hunter.json +5 -5
  37. package/src/apps/instagram-api.json +4 -6
  38. package/src/apps/late.json +17 -17
  39. package/src/apps/leadpages.json +4 -4
  40. package/src/apps/learning-platform.json +53 -53
  41. package/src/apps/marin-software.json +2 -2
  42. package/src/apps/notion.json +12 -12
  43. package/src/apps/omnikit-analytics.json +1 -1
  44. package/src/apps/omnikit-api-gateway.json +11 -11
  45. package/src/apps/omnikit-billing.json +21 -21
  46. package/src/apps/omnikit-cms.json +23 -23
  47. package/src/apps/omnikit-functions.json +6 -6
  48. package/src/apps/omnikit-intelligence.json +1 -1
  49. package/src/apps/omnikit-management.json +3 -3
  50. package/src/apps/omnikit-messaging.json +25 -25
  51. package/src/apps/omnikit-redirects.json +1 -1
  52. package/src/apps/omnikit-webhooks.json +3 -3
  53. package/src/apps/optinmonster.json +4 -4
  54. package/src/apps/paidkit.json +13 -13
  55. package/src/apps/polymarket.json +5 -5
  56. package/src/apps/porkbun.json +12 -12
  57. package/src/apps/rankbird.json +51 -56
  58. package/src/apps/skai.json +4 -4
  59. package/src/apps/smartly.json +1 -1
  60. package/src/apps/socialcast.json +12 -12
  61. package/src/apps/stripe-payments.json +9 -9
  62. package/src/apps/taskflow.json +11 -11
  63. package/src/apps/ticktick.json +3 -3
  64. package/src/apps/tiktok-api.json +78 -0
  65. package/src/apps/todoist.json +1 -1
  66. package/src/apps/twilio.json +28 -28
  67. package/src/apps/twitter-api.json +86 -30
@@ -43,7 +43,7 @@
43
43
  "name": "get_voice",
44
44
  "description": "Retrieve details for a specific voice by its ID. Returns the voice's name, description, language, and embedding information.",
45
45
  "method": "GET",
46
- "path": "/voices/%7B%7Bparam.voice_id%7D%7D",
46
+ "path": "/voices/{{param.voice_id}}",
47
47
  "input_schema": {
48
48
  "type": "object",
49
49
  "properties": {
@@ -30,7 +30,7 @@
30
30
  "name": "execute_tool",
31
31
  "description": "Execute any Composio tool/action. Specify the tool name (e.g., 'GMAIL_SEND_EMAIL', 'SLACK_POST_MESSAGE') and provide the required arguments.",
32
32
  "method": "POST",
33
- "path": "/tools/%7B%7Btool_name%7D%7D/execute",
33
+ "path": "/tools/{tool_name}/execute",
34
34
  "input_schema": {
35
35
  "type": "object",
36
36
  "properties": {
@@ -73,7 +73,7 @@
73
73
  "name": "get_tool",
74
74
  "description": "Get detailed information about a specific Composio tool including its input schema.",
75
75
  "method": "GET",
76
- "path": "/tools/%7B%7Btool_name%7D%7D",
76
+ "path": "/tools/{tool_name}",
77
77
  "input_schema": {
78
78
  "type": "object",
79
79
  "properties": {
@@ -65,7 +65,7 @@
65
65
  "name": "get_subscriber",
66
66
  "description": "Retrieve a specific subscriber by their ID. Returns full subscriber details including email, name, state, created date, and custom fields.",
67
67
  "method": "GET",
68
- "path": "/subscribers/%7B%7Bparam.subscriber_id%7D%7D",
68
+ "path": "/subscribers/{{param.subscriber_id}}",
69
69
  "input_schema": {
70
70
  "type": "object",
71
71
  "properties": {
@@ -188,7 +188,7 @@
188
188
  "name": "tag_subscriber",
189
189
  "description": "Apply a tag to an existing subscriber. The subscriber must already exist in your account. Use List Tags to find the tag ID and List/Get Subscriber to find the subscriber ID.",
190
190
  "method": "POST",
191
- "path": "/tags/%7B%7Bparam.tag_id%7D%7D/subscribers/%7B%7Bparam.subscriber_id%7D%7D",
191
+ "path": "/tags/{{param.tag_id}}/subscribers/{{param.subscriber_id}}",
192
192
  "input_schema": {
193
193
  "type": "object",
194
194
  "properties": {
@@ -88,7 +88,7 @@
88
88
  "name": "get_file",
89
89
  "description": "Get detailed metadata about a file including size, dimensions, duration, mime type, and storage info",
90
90
  "method": "GET",
91
- "path": "/media/files/%7B%7Bfile_id%7D%7D",
91
+ "path": "/media/files/{file_id}",
92
92
  "input_schema": {
93
93
  "type": "object",
94
94
  "properties": {
@@ -163,7 +163,7 @@
163
163
  "name": "download_file",
164
164
  "description": "Get a download URL for a file in storage",
165
165
  "method": "GET",
166
- "path": "/media/files/%7B%7Bfile_id%7D%7D/download",
166
+ "path": "/media/files/{file_id}/download",
167
167
  "input_schema": {
168
168
  "type": "object",
169
169
  "properties": {
@@ -186,7 +186,7 @@
186
186
  "name": "update_file",
187
187
  "description": "Update file metadata - name, description, tags, access level, or move to different folder",
188
188
  "method": "PUT",
189
- "path": "/media/files/%7B%7Bfile_id%7D%7D",
189
+ "path": "/media/files/{file_id}",
190
190
  "input_schema": {
191
191
  "type": "object",
192
192
  "properties": {
@@ -232,7 +232,7 @@
232
232
  "name": "delete_file",
233
233
  "description": "Delete a file from storage permanently",
234
234
  "method": "DELETE",
235
- "path": "/media/files/%7B%7Bfile_id%7D%7D",
235
+ "path": "/media/files/{file_id}",
236
236
  "input_schema": {
237
237
  "type": "object",
238
238
  "properties": {
@@ -359,7 +359,7 @@
359
359
  "name": "list_thumbnails",
360
360
  "description": "List all thumbnails for a video file with timing information and URLs",
361
361
  "method": "GET",
362
- "path": "/media/files/%7B%7Bfile_id%7D%7D/thumbnails",
362
+ "path": "/media/files/{file_id}/thumbnails",
363
363
  "input_schema": {
364
364
  "type": "object",
365
365
  "properties": {
@@ -446,7 +446,7 @@
446
446
  "name": "update_folder",
447
447
  "description": "Update folder name, description, or move to different parent",
448
448
  "method": "PUT",
449
- "path": "/media/folders/%7B%7Bfolder_id%7D%7D",
449
+ "path": "/media/folders/{folder_id}",
450
450
  "input_schema": {
451
451
  "type": "object",
452
452
  "properties": {
@@ -476,7 +476,7 @@
476
476
  "name": "delete_folder",
477
477
  "description": "Delete a folder and optionally all its contents recursively",
478
478
  "method": "DELETE",
479
- "path": "/media/folders/%7B%7Bfolder_id%7D%7D",
479
+ "path": "/media/folders/{folder_id}",
480
480
  "input_schema": {
481
481
  "type": "object",
482
482
  "properties": {
@@ -56,7 +56,7 @@
56
56
  "name": "get_contact",
57
57
  "description": "Retrieve a specific contact by ID. Returns full contact details including name, phone numbers, email, company, and title. Only shared and local contact types can be retrieved.",
58
58
  "method": "GET",
59
- "path": "/contacts/%7B%7Bparam.contact_id%7D%7D",
59
+ "path": "/contacts/{{param.contact_id}}",
60
60
  "input_schema": {
61
61
  "type": "object",
62
62
  "properties": {
@@ -116,7 +116,7 @@
116
116
  "name": "get_call",
117
117
  "description": "Retrieve details about a specific call by its ID. Returns call information including duration, participants, direction, recording status, and transcript availability.",
118
118
  "method": "GET",
119
- "path": "/calls/%7B%7Bparam.call_id%7D%7D",
119
+ "path": "/calls/{{param.call_id}}",
120
120
  "input_schema": {
121
121
  "type": "object",
122
122
  "properties": {
@@ -31,7 +31,7 @@
31
31
  "name": "list_domains",
32
32
  "description": "List all domains in a DNSimple account with optional sorting and pagination",
33
33
  "method": "GET",
34
- "path": "/%7B%7BaccountId%7D%7D/domains",
34
+ "path": "/{accountId}/domains",
35
35
  "input_schema": {
36
36
  "type": "object",
37
37
  "properties": {
@@ -57,7 +57,7 @@
57
57
  "name": "get_domain",
58
58
  "description": "Retrieve details for a specific domain in a DNSimple account",
59
59
  "method": "GET",
60
- "path": "/%7B%7BaccountId%7D%7D/domains/%7B%7BdomainName%7D%7D",
60
+ "path": "/{accountId}/domains/{domainName}",
61
61
  "input_schema": {
62
62
  "type": "object",
63
63
  "properties": {
@@ -80,7 +80,7 @@
80
80
  "name": "register_domain",
81
81
  "description": "Register a new domain through DNSimple. Requires a registrant contact ID.",
82
82
  "method": "POST",
83
- "path": "/%7B%7BaccountId%7D%7D/registrar/domains/%7B%7BdomainName%7D%7D/registrations",
83
+ "path": "/{accountId}/registrar/domains/{domainName}/registrations",
84
84
  "input_schema": {
85
85
  "type": "object",
86
86
  "properties": {
@@ -120,7 +120,7 @@
120
120
  "name": "check_availability",
121
121
  "description": "Check if a domain name is available for registration",
122
122
  "method": "GET",
123
- "path": "/%7B%7BaccountId%7D%7D/registrar/domains/%7B%7BdomainName%7D%7D/check",
123
+ "path": "/{accountId}/registrar/domains/{domainName}/check",
124
124
  "input_schema": {
125
125
  "type": "object",
126
126
  "properties": {
@@ -143,7 +143,7 @@
143
143
  "name": "renew_domain",
144
144
  "description": "Renew a domain registration for an additional period",
145
145
  "method": "POST",
146
- "path": "/%7B%7BaccountId%7D%7D/registrar/domains/%7B%7BdomainName%7D%7D/renewals",
146
+ "path": "/{accountId}/registrar/domains/{domainName}/renewals",
147
147
  "input_schema": {
148
148
  "type": "object",
149
149
  "properties": {
@@ -170,7 +170,7 @@
170
170
  "name": "transfer_domain",
171
171
  "description": "Transfer a domain to DNSimple from another registrar",
172
172
  "method": "POST",
173
- "path": "/%7B%7BaccountId%7D%7D/registrar/domains/%7B%7BdomainName%7D%7D/transfers",
173
+ "path": "/{accountId}/registrar/domains/{domainName}/transfers",
174
174
  "input_schema": {
175
175
  "type": "object",
176
176
  "properties": {
@@ -210,7 +210,7 @@
210
210
  "name": "list_dns_records",
211
211
  "description": "List DNS records for a zone with optional filtering by record type and name",
212
212
  "method": "GET",
213
- "path": "/%7B%7BaccountId%7D%7D/zones/%7B%7BzoneName%7D%7D/records",
213
+ "path": "/{accountId}/zones/{zoneName}/records",
214
214
  "input_schema": {
215
215
  "type": "object",
216
216
  "properties": {
@@ -241,7 +241,7 @@
241
241
  "name": "create_dns_record",
242
242
  "description": "Create a new DNS record in a zone",
243
243
  "method": "POST",
244
- "path": "/%7B%7BaccountId%7D%7D/zones/%7B%7BzoneName%7D%7D/records",
244
+ "path": "/{accountId}/zones/{zoneName}/records",
245
245
  "input_schema": {
246
246
  "type": "object",
247
247
  "properties": {
@@ -287,7 +287,7 @@
287
287
  "name": "update_dns_record",
288
288
  "description": "Update an existing DNS record in a zone",
289
289
  "method": "PATCH",
290
- "path": "/%7B%7BaccountId%7D%7D/zones/%7B%7BzoneName%7D%7D/records/%7B%7BrecordId%7D%7D",
290
+ "path": "/{accountId}/zones/{zoneName}/records/{recordId}",
291
291
  "input_schema": {
292
292
  "type": "object",
293
293
  "properties": {
@@ -331,7 +331,7 @@
331
331
  "name": "delete_dns_record",
332
332
  "description": "Delete a DNS record from a zone",
333
333
  "method": "DELETE",
334
- "path": "/%7B%7BaccountId%7D%7D/zones/%7B%7BzoneName%7D%7D/records/%7B%7BrecordId%7D%7D",
334
+ "path": "/{accountId}/zones/{zoneName}/records/{recordId}",
335
335
  "input_schema": {
336
336
  "type": "object",
337
337
  "properties": {
@@ -359,7 +359,7 @@
359
359
  "name": "get_whois_privacy",
360
360
  "description": "Get the WHOIS privacy status for a domain",
361
361
  "method": "GET",
362
- "path": "/%7B%7BaccountId%7D%7D/registrar/domains/%7B%7BdomainName%7D%7D/whois_privacy",
362
+ "path": "/{accountId}/registrar/domains/{domainName}/whois_privacy",
363
363
  "input_schema": {
364
364
  "type": "object",
365
365
  "properties": {
@@ -382,7 +382,7 @@
382
382
  "name": "enable_whois_privacy",
383
383
  "description": "Enable WHOIS privacy protection for a domain",
384
384
  "method": "PUT",
385
- "path": "/%7B%7BaccountId%7D%7D/registrar/domains/%7B%7BdomainName%7D%7D/whois_privacy",
385
+ "path": "/{accountId}/registrar/domains/{domainName}/whois_privacy",
386
386
  "input_schema": {
387
387
  "type": "object",
388
388
  "properties": {
@@ -51,7 +51,7 @@
51
51
  "name": "list_events",
52
52
  "description": "List events for an organization. Use list-organizations first to get the organization_id. Filter by status and control ordering.",
53
53
  "method": "GET",
54
- "path": "/organizations/%7B%7Borganization_id%7D%7D/events/",
54
+ "path": "/organizations/{organization_id}/events/",
55
55
  "input_schema": {
56
56
  "type": "object",
57
57
  "properties": {
@@ -131,7 +131,7 @@
131
131
  "name": "get_event",
132
132
  "description": "Get detailed information about a specific Eventbrite event. Use expand to include related data like venue, ticket_classes, organizer.",
133
133
  "method": "GET",
134
- "path": "/events/%7B%7Bevent_id%7D%7D/",
134
+ "path": "/events/{event_id}/",
135
135
  "input_schema": {
136
136
  "type": "object",
137
137
  "properties": {
@@ -153,7 +153,7 @@
153
153
  "name": "create_event",
154
154
  "description": "Create a new Eventbrite event under an organization. Pass an event object with nested structure: name.html (string), description.html (string), start.utc (ISO8601), start.timezone (e.g., 'America/New_York'), end.utc (ISO8601), end.timezone, currency (e.g., 'USD'). Optional: online_event (bool), listed (bool), capacity (int), venue_id, category_id, format_id.",
155
155
  "method": "POST",
156
- "path": "/organizations/%7B%7Borganization_id%7D%7D/events/",
156
+ "path": "/organizations/{organization_id}/events/",
157
157
  "input_schema": {
158
158
  "type": "object",
159
159
  "properties": {
@@ -231,7 +231,7 @@
231
231
  "name": "update_event",
232
232
  "description": "Update an existing Eventbrite event. Pass an event object with only the fields to change. Uses same nested structure as create: name.html, description.html, start.utc, start.timezone, end.utc, end.timezone, currency, online_event, listed, capacity, venue_id.",
233
233
  "method": "POST",
234
- "path": "/events/%7B%7Bevent_id%7D%7D/",
234
+ "path": "/events/{event_id}/",
235
235
  "input_schema": {
236
236
  "type": "object",
237
237
  "properties": {
@@ -254,7 +254,7 @@
254
254
  "name": "publish_event",
255
255
  "description": "Publish a draft Eventbrite event, making it live and visible to the public. Event must have all required fields (name, dates, at least one ticket class).",
256
256
  "method": "POST",
257
- "path": "/events/%7B%7Bevent_id%7D%7D/publish/",
257
+ "path": "/events/{event_id}/publish/",
258
258
  "input_schema": {
259
259
  "type": "object",
260
260
  "properties": {
@@ -272,7 +272,7 @@
272
272
  "name": "unpublish_event",
273
273
  "description": "Unpublish a live Eventbrite event, reverting it to draft status. The event will no longer be publicly visible.",
274
274
  "method": "POST",
275
- "path": "/events/%7B%7Bevent_id%7D%7D/unpublish/",
275
+ "path": "/events/{event_id}/unpublish/",
276
276
  "input_schema": {
277
277
  "type": "object",
278
278
  "properties": {
@@ -290,7 +290,7 @@
290
290
  "name": "cancel_event",
291
291
  "description": "Cancel an Eventbrite event. This notifies attendees and initiates refund processing. Cannot be undone.",
292
292
  "method": "POST",
293
- "path": "/events/%7B%7Bevent_id%7D%7D/cancel/",
293
+ "path": "/events/{event_id}/cancel/",
294
294
  "input_schema": {
295
295
  "type": "object",
296
296
  "properties": {
@@ -308,7 +308,7 @@
308
308
  "name": "delete_event",
309
309
  "description": "Permanently delete an Eventbrite event. Only works on draft or canceled events. This action cannot be undone.",
310
310
  "method": "DELETE",
311
- "path": "/events/%7B%7Bevent_id%7D%7D/",
311
+ "path": "/events/{event_id}/",
312
312
  "input_schema": {
313
313
  "type": "object",
314
314
  "properties": {
@@ -326,7 +326,7 @@
326
326
  "name": "list_attendees",
327
327
  "description": "List attendees for an Eventbrite event. Optionally filter by status (attending, not_attending, unpaid).",
328
328
  "method": "GET",
329
- "path": "/events/%7B%7Bevent_id%7D%7D/attendees/",
329
+ "path": "/events/{event_id}/attendees/",
330
330
  "input_schema": {
331
331
  "type": "object",
332
332
  "properties": {
@@ -353,7 +353,7 @@
353
353
  "name": "list_orders",
354
354
  "description": "List orders (ticket purchases) for an Eventbrite event. Filter by status and changed_since date.",
355
355
  "method": "GET",
356
- "path": "/events/%7B%7Bevent_id%7D%7D/orders/",
356
+ "path": "/events/{event_id}/orders/",
357
357
  "input_schema": {
358
358
  "type": "object",
359
359
  "properties": {
@@ -384,7 +384,7 @@
384
384
  "name": "get_order",
385
385
  "description": "Get details of a specific order including buyer info, ticket details, and payment status.",
386
386
  "method": "GET",
387
- "path": "/orders/%7B%7Border_id%7D%7D/",
387
+ "path": "/orders/{order_id}/",
388
388
  "input_schema": {
389
389
  "type": "object",
390
390
  "properties": {
@@ -406,7 +406,7 @@
406
406
  "name": "list_ticket_classes",
407
407
  "description": "List all ticket types/classes for an event. Returns ticket names, prices, quantities, and sales status.",
408
408
  "method": "GET",
409
- "path": "/events/%7B%7Bevent_id%7D%7D/ticket_classes/",
409
+ "path": "/events/{event_id}/ticket_classes/",
410
410
  "input_schema": {
411
411
  "type": "object",
412
412
  "properties": {
@@ -424,7 +424,7 @@
424
424
  "name": "create_ticket_class",
425
425
  "description": "Create a ticket type for an event. Pass a ticket_class object with: name (required), quantity_total (required, integer), free (bool) OR cost (string like 'USD,1500' for $15.00), donation (bool), description, sales_start (ISO8601), sales_end (ISO8601), minimum_quantity, maximum_quantity.",
426
426
  "method": "POST",
427
- "path": "/events/%7B%7Bevent_id%7D%7D/ticket_classes/",
427
+ "path": "/events/{event_id}/ticket_classes/",
428
428
  "input_schema": {
429
429
  "type": "object",
430
430
  "properties": {
@@ -484,7 +484,7 @@
484
484
  "name": "update_ticket_class",
485
485
  "description": "Update a ticket type for an event. Pass only the fields to change in the ticket_class object.",
486
486
  "method": "POST",
487
- "path": "/events/%7B%7Bevent_id%7D%7D/ticket_classes/%7B%7Bticket_class_id%7D%7D/",
487
+ "path": "/events/{event_id}/ticket_classes/{ticket_class_id}/",
488
488
  "input_schema": {
489
489
  "type": "object",
490
490
  "properties": {
@@ -512,7 +512,7 @@
512
512
  "name": "list_venues",
513
513
  "description": "List venues for an organization. Returns venue IDs, names, addresses, and capacity info.",
514
514
  "method": "GET",
515
- "path": "/organizations/%7B%7Borganization_id%7D%7D/venues/",
515
+ "path": "/organizations/{organization_id}/venues/",
516
516
  "input_schema": {
517
517
  "type": "object",
518
518
  "properties": {
@@ -530,7 +530,7 @@
530
530
  "name": "create_venue",
531
531
  "description": "Create a new venue under an organization. Pass a venue object with: name (required), address.address_1 (required), address.city, address.region, address.postal_code, address.country (2-letter code), capacity (int).",
532
532
  "method": "POST",
533
- "path": "/organizations/%7B%7Borganization_id%7D%7D/venues/",
533
+ "path": "/organizations/{organization_id}/venues/",
534
534
  "input_schema": {
535
535
  "type": "object",
536
536
  "properties": {
@@ -34,7 +34,7 @@
34
34
  "name": "run",
35
35
  "description": "Run a fal.ai model synchronously and get the result directly. Best for fast models that complete in under 60 seconds (e.g. FLUX image generation, whisper transcription)",
36
36
  "method": "POST",
37
- "path": "/%7B%7Bmodel_id%7D%7D",
37
+ "path": "/{model_id}",
38
38
  "input_schema": {
39
39
  "type": "object",
40
40
  "properties": {
@@ -124,7 +124,7 @@
124
124
  "name": "queue_submit",
125
125
  "description": "Submit a model request to the fal.ai queue for async processing. Returns a request_id to poll for results. Best for longer-running models (video generation, training, etc.)",
126
126
  "method": "POST",
127
- "path": "/%7B%7Bmodel_id%7D%7D",
127
+ "path": "/{model_id}",
128
128
  "input_schema": {
129
129
  "type": "object",
130
130
  "properties": {
@@ -209,7 +209,7 @@
209
209
  "name": "queue_status",
210
210
  "description": "Check the status of an async queue request. Returns status (IN_QUEUE, IN_PROGRESS, COMPLETED) and queue position",
211
211
  "method": "GET",
212
- "path": "/%7B%7Bmodel_id%7D%7D/requests/%7B%7Brequest_id%7D%7D/status",
212
+ "path": "/{model_id}/requests/{request_id}/status",
213
213
  "input_schema": {
214
214
  "type": "object",
215
215
  "properties": {
@@ -232,7 +232,7 @@
232
232
  "name": "queue_result",
233
233
  "description": "Retrieve the result of a completed async queue request. Only call after status is COMPLETED",
234
234
  "method": "GET",
235
- "path": "/%7B%7Bmodel_id%7D%7D/requests/%7B%7Brequest_id%7D%7D",
235
+ "path": "/{model_id}/requests/{request_id}",
236
236
  "input_schema": {
237
237
  "type": "object",
238
238
  "properties": {
@@ -255,7 +255,7 @@
255
255
  "name": "queue_cancel",
256
256
  "description": "Cancel a pending or in-progress queue request",
257
257
  "method": "PUT",
258
- "path": "/%7B%7Bmodel_id%7D%7D/requests/%7B%7Brequest_id%7D%7D/cancel",
258
+ "path": "/{model_id}/requests/{request_id}/cancel",
259
259
  "input_schema": {
260
260
  "type": "object",
261
261
  "properties": {
@@ -84,7 +84,7 @@
84
84
  "name": "list_deals_in_group",
85
85
  "description": "List all deals belonging to a specific group (pipeline) in Folk CRM. Returns deal details including status, value, and associated contacts.",
86
86
  "method": "GET",
87
- "path": "/groups/%7B%7Bparam.group_id%7D%7D/deals",
87
+ "path": "/groups/{{param.group_id}}/deals",
88
88
  "input_schema": {
89
89
  "type": "object",
90
90
  "properties": {
@@ -139,7 +139,7 @@
139
139
  "name": "update_deal",
140
140
  "description": "Update an existing deal in Folk CRM. Modify deal properties such as name, status, value, and custom fields.",
141
141
  "method": "PATCH",
142
- "path": "/deals/%7B%7Bparam.deal_id%7D%7D",
142
+ "path": "/deals/{{param.deal_id}}",
143
143
  "input_schema": {
144
144
  "type": "object",
145
145
  "properties": {
@@ -230,7 +230,7 @@
230
230
  "name": "update_note",
231
231
  "description": "Update an existing note in Folk CRM. Modify the note content.",
232
232
  "method": "PATCH",
233
- "path": "/notes/%7B%7Bparam.note_id%7D%7D",
233
+ "path": "/notes/{{param.note_id}}",
234
234
  "input_schema": {
235
235
  "type": "object",
236
236
  "properties": {
@@ -299,7 +299,7 @@
299
299
  "name": "update_company",
300
300
  "description": "Update an existing company in Folk CRM. Modify company properties such as name, domain, and custom fields.",
301
301
  "method": "PATCH",
302
- "path": "/companies/%7B%7Bparam.company_id%7D%7D",
302
+ "path": "/companies/{{param.company_id}}",
303
303
  "input_schema": {
304
304
  "type": "object",
305
305
  "properties": {
@@ -397,7 +397,7 @@
397
397
  "name": "update_person",
398
398
  "description": "Update an existing person in Folk CRM. Modify person properties such as name, email, phone, and custom fields.",
399
399
  "method": "PATCH",
400
- "path": "/people/%7B%7Bparam.person_id%7D%7D",
400
+ "path": "/people/{{param.person_id}}",
401
401
  "input_schema": {
402
402
  "type": "object",
403
403
  "properties": {