Integrations
Update integration
patch/integrations/{id}
Path parameters
idstring required
Resource ID (stringified bigint)
Request body
Example request
{
"name": "My Telegram Bot",
"eventTypes": [
"tweet.new",
"follower.gained"
],
"isActive": true,
"scopeAllMonitors": true,
"messageTemplate": {},
"filters": {}
}Response
Integration updated
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"
}