@apteva/integrations 0.3.13 → 0.3.15
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/heygen.json +881 -58
- 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-code-ops.json +1183 -0
- 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 +30 -12
- 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
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"name": "get_user_by_username",
|
|
47
47
|
"description": "Look up an X user by their username (handle) to get their profile info and user ID",
|
|
48
48
|
"method": "GET",
|
|
49
|
-
"path": "/2/users/by/username
|
|
49
|
+
"path": "/2/users/by/username/{username}",
|
|
50
50
|
"input_schema": {
|
|
51
51
|
"type": "object",
|
|
52
52
|
"properties": {
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"name": "get_tweet",
|
|
70
70
|
"description": "Get a single post by its ID with full details including metrics, author info, and referenced posts",
|
|
71
71
|
"method": "GET",
|
|
72
|
-
"path": "/2/tweets
|
|
72
|
+
"path": "/2/tweets/{tweet_id}",
|
|
73
73
|
"input_schema": {
|
|
74
74
|
"type": "object",
|
|
75
75
|
"properties": {
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"name": "delete_tweet",
|
|
152
152
|
"description": "Delete a tweet by its ID. Must be the authenticated user's own tweet.",
|
|
153
153
|
"method": "DELETE",
|
|
154
|
-
"path": "/2/tweets
|
|
154
|
+
"path": "/2/tweets/{tweet_id}",
|
|
155
155
|
"input_schema": {
|
|
156
156
|
"type": "object",
|
|
157
157
|
"properties": {
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
"name": "get_user_tweets",
|
|
230
230
|
"description": "Get tweets posted by a specific user. Returns their timeline of original tweets and retweets.",
|
|
231
231
|
"method": "GET",
|
|
232
|
-
"path": "/2/users
|
|
232
|
+
"path": "/2/users/{user_id}/tweets",
|
|
233
233
|
"input_schema": {
|
|
234
234
|
"type": "object",
|
|
235
235
|
"properties": {
|
|
@@ -275,7 +275,7 @@
|
|
|
275
275
|
"name": "get_user_mentions",
|
|
276
276
|
"description": "Get tweets that mention a specific user by their user ID",
|
|
277
277
|
"method": "GET",
|
|
278
|
-
"path": "/2/users
|
|
278
|
+
"path": "/2/users/{user_id}/mentions",
|
|
279
279
|
"input_schema": {
|
|
280
280
|
"type": "object",
|
|
281
281
|
"properties": {
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
"name": "get_home_timeline",
|
|
315
315
|
"description": "Get the authenticated user's reverse-chronological home timeline (tweets from followed accounts)",
|
|
316
316
|
"method": "GET",
|
|
317
|
-
"path": "/2/users
|
|
317
|
+
"path": "/2/users/{user_id}/timelines/reverse_chronological",
|
|
318
318
|
"input_schema": {
|
|
319
319
|
"type": "object",
|
|
320
320
|
"properties": {
|
|
@@ -362,7 +362,7 @@
|
|
|
362
362
|
"name": "get_followers",
|
|
363
363
|
"description": "Get a list of users who follow the specified user",
|
|
364
364
|
"method": "GET",
|
|
365
|
-
"path": "/2/users
|
|
365
|
+
"path": "/2/users/{user_id}/followers",
|
|
366
366
|
"input_schema": {
|
|
367
367
|
"type": "object",
|
|
368
368
|
"properties": {
|
|
@@ -396,7 +396,7 @@
|
|
|
396
396
|
"name": "get_following",
|
|
397
397
|
"description": "Get a list of users that the specified user follows",
|
|
398
398
|
"method": "GET",
|
|
399
|
-
"path": "/2/users
|
|
399
|
+
"path": "/2/users/{user_id}/following",
|
|
400
400
|
"input_schema": {
|
|
401
401
|
"type": "object",
|
|
402
402
|
"properties": {
|
|
@@ -430,7 +430,7 @@
|
|
|
430
430
|
"name": "follow_user",
|
|
431
431
|
"description": "Follow a user. Requires the authenticated user's ID and the target user's ID.",
|
|
432
432
|
"method": "POST",
|
|
433
|
-
"path": "/2/users
|
|
433
|
+
"path": "/2/users/{user_id}/following",
|
|
434
434
|
"input_schema": {
|
|
435
435
|
"type": "object",
|
|
436
436
|
"properties": {
|
|
@@ -453,7 +453,7 @@
|
|
|
453
453
|
"name": "unfollow_user",
|
|
454
454
|
"description": "Unfollow a user. Requires the authenticated user's ID and the target user's ID.",
|
|
455
455
|
"method": "DELETE",
|
|
456
|
-
"path": "/2/users
|
|
456
|
+
"path": "/2/users/{user_id}/following/{target_user_id}",
|
|
457
457
|
"input_schema": {
|
|
458
458
|
"type": "object",
|
|
459
459
|
"properties": {
|
|
@@ -476,7 +476,7 @@
|
|
|
476
476
|
"name": "like_tweet",
|
|
477
477
|
"description": "Like a tweet. Requires the authenticated user's ID and the tweet ID.",
|
|
478
478
|
"method": "POST",
|
|
479
|
-
"path": "/2/users
|
|
479
|
+
"path": "/2/users/{user_id}/likes",
|
|
480
480
|
"input_schema": {
|
|
481
481
|
"type": "object",
|
|
482
482
|
"properties": {
|
|
@@ -499,7 +499,7 @@
|
|
|
499
499
|
"name": "unlike_tweet",
|
|
500
500
|
"description": "Remove a like from a tweet",
|
|
501
501
|
"method": "DELETE",
|
|
502
|
-
"path": "/2/users
|
|
502
|
+
"path": "/2/users/{user_id}/likes/{tweet_id}",
|
|
503
503
|
"input_schema": {
|
|
504
504
|
"type": "object",
|
|
505
505
|
"properties": {
|
|
@@ -522,7 +522,7 @@
|
|
|
522
522
|
"name": "retweet",
|
|
523
523
|
"description": "Retweet a tweet. Requires the authenticated user's ID and the tweet ID.",
|
|
524
524
|
"method": "POST",
|
|
525
|
-
"path": "/2/users
|
|
525
|
+
"path": "/2/users/{user_id}/retweets",
|
|
526
526
|
"input_schema": {
|
|
527
527
|
"type": "object",
|
|
528
528
|
"properties": {
|
|
@@ -545,7 +545,7 @@
|
|
|
545
545
|
"name": "undo_retweet",
|
|
546
546
|
"description": "Remove a retweet",
|
|
547
547
|
"method": "DELETE",
|
|
548
|
-
"path": "/2/users
|
|
548
|
+
"path": "/2/users/{user_id}/retweets/{tweet_id}",
|
|
549
549
|
"input_schema": {
|
|
550
550
|
"type": "object",
|
|
551
551
|
"properties": {
|
|
@@ -568,7 +568,7 @@
|
|
|
568
568
|
"name": "get_bookmarks",
|
|
569
569
|
"description": "Get the authenticated user's bookmarked tweets",
|
|
570
570
|
"method": "GET",
|
|
571
|
-
"path": "/2/users
|
|
571
|
+
"path": "/2/users/{user_id}/bookmarks",
|
|
572
572
|
"input_schema": {
|
|
573
573
|
"type": "object",
|
|
574
574
|
"properties": {
|
|
@@ -607,7 +607,7 @@
|
|
|
607
607
|
"name": "add_bookmark",
|
|
608
608
|
"description": "Add a tweet to the authenticated user's bookmarks",
|
|
609
609
|
"method": "POST",
|
|
610
|
-
"path": "/2/users
|
|
610
|
+
"path": "/2/users/{user_id}/bookmarks",
|
|
611
611
|
"input_schema": {
|
|
612
612
|
"type": "object",
|
|
613
613
|
"properties": {
|
|
@@ -630,7 +630,7 @@
|
|
|
630
630
|
"name": "remove_bookmark",
|
|
631
631
|
"description": "Remove a tweet from the authenticated user's bookmarks",
|
|
632
632
|
"method": "DELETE",
|
|
633
|
-
"path": "/2/users
|
|
633
|
+
"path": "/2/users/{user_id}/bookmarks/{tweet_id}",
|
|
634
634
|
"input_schema": {
|
|
635
635
|
"type": "object",
|
|
636
636
|
"properties": {
|
|
@@ -653,7 +653,7 @@
|
|
|
653
653
|
"name": "get_liked_tweets",
|
|
654
654
|
"description": "Get tweets liked by a specific user",
|
|
655
655
|
"method": "GET",
|
|
656
|
-
"path": "/2/users
|
|
656
|
+
"path": "/2/users/{user_id}/liked_tweets",
|
|
657
657
|
"input_schema": {
|
|
658
658
|
"type": "object",
|
|
659
659
|
"properties": {
|
|
@@ -692,7 +692,7 @@
|
|
|
692
692
|
"name": "get_liking_users",
|
|
693
693
|
"description": "Get users who liked a specific tweet",
|
|
694
694
|
"method": "GET",
|
|
695
|
-
"path": "/2/tweets
|
|
695
|
+
"path": "/2/tweets/{tweet_id}/liking_users",
|
|
696
696
|
"input_schema": {
|
|
697
697
|
"type": "object",
|
|
698
698
|
"properties": {
|
|
@@ -726,7 +726,7 @@
|
|
|
726
726
|
"name": "get_retweeters",
|
|
727
727
|
"description": "Get users who retweeted a specific tweet",
|
|
728
728
|
"method": "GET",
|
|
729
|
-
"path": "/2/tweets
|
|
729
|
+
"path": "/2/tweets/{tweet_id}/retweeted_by",
|
|
730
730
|
"input_schema": {
|
|
731
731
|
"type": "object",
|
|
732
732
|
"properties": {
|
|
@@ -760,7 +760,7 @@
|
|
|
760
760
|
"name": "mute_user",
|
|
761
761
|
"description": "Mute a user. Muted users' posts will not appear in your timeline.",
|
|
762
762
|
"method": "POST",
|
|
763
|
-
"path": "/2/users
|
|
763
|
+
"path": "/2/users/{user_id}/muting",
|
|
764
764
|
"input_schema": {
|
|
765
765
|
"type": "object",
|
|
766
766
|
"properties": {
|
|
@@ -783,7 +783,7 @@
|
|
|
783
783
|
"name": "unmute_user",
|
|
784
784
|
"description": "Unmute a previously muted user",
|
|
785
785
|
"method": "DELETE",
|
|
786
|
-
"path": "/2/users
|
|
786
|
+
"path": "/2/users/{user_id}/muting/{target_user_id}",
|
|
787
787
|
"input_schema": {
|
|
788
788
|
"type": "object",
|
|
789
789
|
"properties": {
|
|
@@ -806,7 +806,7 @@
|
|
|
806
806
|
"name": "get_muted_users",
|
|
807
807
|
"description": "Get the list of users the authenticated user has muted",
|
|
808
808
|
"method": "GET",
|
|
809
|
-
"path": "/2/users
|
|
809
|
+
"path": "/2/users/{user_id}/muting",
|
|
810
810
|
"input_schema": {
|
|
811
811
|
"type": "object",
|
|
812
812
|
"properties": {
|
|
@@ -840,7 +840,7 @@
|
|
|
840
840
|
"name": "block_user",
|
|
841
841
|
"description": "Block a user. Blocked users cannot follow you or view your posts.",
|
|
842
842
|
"method": "POST",
|
|
843
|
-
"path": "/2/users
|
|
843
|
+
"path": "/2/users/{user_id}/blocking",
|
|
844
844
|
"input_schema": {
|
|
845
845
|
"type": "object",
|
|
846
846
|
"properties": {
|
|
@@ -863,7 +863,7 @@
|
|
|
863
863
|
"name": "unblock_user",
|
|
864
864
|
"description": "Unblock a previously blocked user",
|
|
865
865
|
"method": "DELETE",
|
|
866
|
-
"path": "/2/users
|
|
866
|
+
"path": "/2/users/{user_id}/blocking/{target_user_id}",
|
|
867
867
|
"input_schema": {
|
|
868
868
|
"type": "object",
|
|
869
869
|
"properties": {
|
|
@@ -886,7 +886,7 @@
|
|
|
886
886
|
"name": "get_blocked_users",
|
|
887
887
|
"description": "Get the list of users the authenticated user has blocked",
|
|
888
888
|
"method": "GET",
|
|
889
|
-
"path": "/2/users
|
|
889
|
+
"path": "/2/users/{user_id}/blocking",
|
|
890
890
|
"input_schema": {
|
|
891
891
|
"type": "object",
|
|
892
892
|
"properties": {
|
|
@@ -920,7 +920,7 @@
|
|
|
920
920
|
"name": "send_dm",
|
|
921
921
|
"description": "Send a direct message to a specific user. Creates a one-on-one DM conversation if one doesn't exist.",
|
|
922
922
|
"method": "POST",
|
|
923
|
-
"path": "/2/dm_conversations/with
|
|
923
|
+
"path": "/2/dm_conversations/with/{participant_id}/messages",
|
|
924
924
|
"input_schema": {
|
|
925
925
|
"type": "object",
|
|
926
926
|
"properties": {
|
|
@@ -943,7 +943,7 @@
|
|
|
943
943
|
"name": "send_dm_to_conversation",
|
|
944
944
|
"description": "Send a direct message to an existing DM conversation (one-on-one or group). Use the conversation ID from a previous DM lookup.",
|
|
945
945
|
"method": "POST",
|
|
946
|
-
"path": "/2/dm_conversations
|
|
946
|
+
"path": "/2/dm_conversations/{dm_conversation_id}/messages",
|
|
947
947
|
"input_schema": {
|
|
948
948
|
"type": "object",
|
|
949
949
|
"properties": {
|
|
@@ -1105,7 +1105,7 @@
|
|
|
1105
1105
|
"name": "upload_append",
|
|
1106
1106
|
"description": "Append a chunk of data to an in-progress chunked upload. Call sequentially with incrementing segment_index (starting at 0) until all data is uploaded.",
|
|
1107
1107
|
"method": "POST",
|
|
1108
|
-
"path": "/2/media/upload
|
|
1108
|
+
"path": "/2/media/upload/{media_id}/append",
|
|
1109
1109
|
"input_schema": {
|
|
1110
1110
|
"type": "object",
|
|
1111
1111
|
"properties": {
|
|
@@ -1133,7 +1133,7 @@
|
|
|
1133
1133
|
"name": "upload_finalize",
|
|
1134
1134
|
"description": "Finalize a chunked media upload after all chunks have been appended. If response includes processing_info with state 'pending' or 'in_progress', wait check_after_secs then check status again. Once state is 'succeeded', use the media_id to post a tweet.",
|
|
1135
1135
|
"method": "POST",
|
|
1136
|
-
"path": "/2/media/upload
|
|
1136
|
+
"path": "/2/media/upload/{media_id}/finalize",
|
|
1137
1137
|
"input_schema": {
|
|
1138
1138
|
"type": "object",
|
|
1139
1139
|
"properties": {
|
|
@@ -1146,6 +1146,62 @@
|
|
|
1146
1146
|
"media_id"
|
|
1147
1147
|
]
|
|
1148
1148
|
}
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
"name": "get_tweet_analytics",
|
|
1152
|
+
"description": "Get engagement metrics for one or more tweets. Returns public_metrics (impressions, likes, retweets, replies, quotes, bookmarks) and optionally non_public_metrics and organic_metrics (requires tweet owner auth). Up to 100 tweet IDs per request.\n\nExample:\n{\n \"tweetIds\": [\"1234567890\", \"0987654321\"],\n \"include_non_public\": true\n}",
|
|
1153
|
+
"method": "GET",
|
|
1154
|
+
"path": "/get-tweet-analytics",
|
|
1155
|
+
"input_schema": {
|
|
1156
|
+
"type": "object",
|
|
1157
|
+
"properties": {
|
|
1158
|
+
"tweetIds": {
|
|
1159
|
+
"type": "array",
|
|
1160
|
+
"description": "Array of tweet IDs to get analytics for (max 100)",
|
|
1161
|
+
"items": {
|
|
1162
|
+
"type": "string"
|
|
1163
|
+
},
|
|
1164
|
+
"maxItems": 100
|
|
1165
|
+
},
|
|
1166
|
+
"tweetId": {
|
|
1167
|
+
"type": "string",
|
|
1168
|
+
"description": "Single tweet ID (alternative to tweetIds array)"
|
|
1169
|
+
},
|
|
1170
|
+
"include_non_public": {
|
|
1171
|
+
"type": "boolean",
|
|
1172
|
+
"description": "Include non_public_metrics and organic_metrics (requires tweet owner authentication)",
|
|
1173
|
+
"default": false
|
|
1174
|
+
}
|
|
1175
|
+
}
|
|
1176
|
+
}
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
"name": "get_account_analytics",
|
|
1180
|
+
"description": "Get account-level analytics for an X/Twitter user. Returns profile public_metrics (followers, following, tweet count, listed count) and optionally aggregated engagement metrics from recent original tweets (total impressions, likes, retweets, replies, quotes, bookmarks, and average engagement rate).\n\nExample:\n{\n \"userId\": \"1234567890\",\n \"include_recent_tweets\": true,\n \"recent_tweet_count\": 20\n}",
|
|
1181
|
+
"method": "GET",
|
|
1182
|
+
"path": "/get-account-analytics",
|
|
1183
|
+
"input_schema": {
|
|
1184
|
+
"type": "object",
|
|
1185
|
+
"properties": {
|
|
1186
|
+
"userId": {
|
|
1187
|
+
"type": "string",
|
|
1188
|
+
"description": "X/Twitter user ID"
|
|
1189
|
+
},
|
|
1190
|
+
"include_recent_tweets": {
|
|
1191
|
+
"type": "boolean",
|
|
1192
|
+
"description": "Include recent tweets and engagement summary",
|
|
1193
|
+
"default": true
|
|
1194
|
+
},
|
|
1195
|
+
"recent_tweet_count": {
|
|
1196
|
+
"type": "integer",
|
|
1197
|
+
"description": "Number of recent tweets to analyze (max 100)",
|
|
1198
|
+
"default": 10
|
|
1199
|
+
}
|
|
1200
|
+
},
|
|
1201
|
+
"required": [
|
|
1202
|
+
"userId"
|
|
1203
|
+
]
|
|
1204
|
+
}
|
|
1149
1205
|
}
|
|
1150
1206
|
]
|
|
1151
1207
|
}
|