Integrations
Create integration
post/integrations
Request body
Example request
{
"type": "telegram",
"name": "My Telegram Bot",
"config": {
"chatId": "-1001234567890"
},
"eventTypes": [
"tweet.new",
"follower.gained"
]
}Response
Integration created
Example response
{
"id": "42",
"type": "telegram",
"name": "My Telegram Bot",
"config": {
"chatId": "-1001234567890"
},
"eventTypes": [
"tweet.new",
"follower.gained"
],
"isActive": true,
"scopeAllMonitors": true,
"messageTemplate": "New event: {{event.type}}",
"filters": {
"minFollowers": 100
},
"createdAt": "2025-01-15T12:00:00Z"
}