diff --git a/constructs/telegram-alert-channel.mdx b/constructs/telegram-alert-channel.mdx
index ec4fd697..077fb165 100644
--- a/constructs/telegram-alert-channel.mdx
+++ b/constructs/telegram-alert-channel.mdx
@@ -33,6 +33,7 @@ const telegramChannel = new TelegramAlertChannel('my-telegramchannel-1', {
name: 'My Telegram channel',
apiKey: 'xxxxxx',
chatId: 'xxxxxx',
+ messageThreadId: '42',
sendRecovery: true,
sendFailure: true,
sendDegraded: true,
@@ -63,6 +64,10 @@ The API key associated with your Telegram bot.
The chat ID of the Telegram channel you want to send alerts to.
+
+The message thread ID of a topic in a Telegram forum group. Set this option to route alerts to that topic instead of the group's General topic.
+
+
The message sent to the chat when an alert is triggered. If this is not specified, we'll send a default payload with some basic information about the alert.
diff --git a/integrations/alerts/telegram.mdx b/integrations/alerts/telegram.mdx
index ea332c95..05062315 100644
--- a/integrations/alerts/telegram.mdx
+++ b/integrations/alerts/telegram.mdx
@@ -12,6 +12,8 @@ To enable the Telegram alert channel, you'll need two things:
1. Your own Telegram bot and its associated HTTP API Token
2. Your own Telegram user's Chat ID
+To send alerts to a specific topic in a Telegram forum group, you'll also need the topic's Message Thread ID.
+
## Telegram Bot
1. Create a **Telegram Bot** using the [@BotFather](https://t.me/botfather). Detailed instructions can be found [here](https://core.telegram.org/bots), however you can simply message the Telegram user `@BotFather` and send them the command message `/newbot`. Then follow the instructions the bot replies with.
@@ -32,7 +34,7 @@ There are multiple methods for getting your own users Chat ID in Telegram and we
You can retrieve your own Telegram Chat ID by starting a chat with another bot. This Telegram bot user can be found at `@get_id_bot`.
-1. Send this `@get_id_bot` bot the command message `/my_id` and they will reply with a 9 digit number which identifies you in Telegram. **This is the second and last piece of information we need for the Checkly Telegram integration**.
+1. Send this `@get_id_bot` bot the command message `/my_id` and they will reply with a 9 digit number which identifies you in Telegram. **This is the second required piece of information we need for the Checkly Telegram integration**.
#### API Query
@@ -42,7 +44,17 @@ Alternatively, we can use the API token we generated with the bot earlier and qu

- In the `result` array, you will see the message you sent to your Bot previously to start it, including the `id` of the user who sent it - your own. This should be a 9-digit number. **This is the second and last piece of information we need for the Checkly Telegram integration**.
+ In the `result` array, you will see the message you sent to your Bot previously to start it, including the `id` of the user who sent it - your own. This should be a 9-digit number. **This is the second required piece of information we need for the Checkly Telegram integration**.
+
+## Message Thread ID
+
+Telegram forum groups organize messages into topics. To route Checkly alerts to a specific topic:
+
+1. Add your bot to the forum group and send it a message in the target topic.
+2. Open `https://api.telegram.org/bot/getUpdates`, replacing `` with your bot token.
+3. Find the message in the response and copy its `message_thread_id`.
+
+The Message Thread ID is optional. If you leave it empty, Telegram sends alerts to the group's General topic.
## Checkly Integration
@@ -53,7 +65,7 @@ With the (1) **HTTP API Token** and (2) **Chat ID** in hand, we can go back to C

-2. Give the alert channel a name and **paste the API Token and Chat ID** in the dedicated input fields. Here you can also tweak
+2. Give the alert channel a name and **paste the API Token and Chat ID** in the dedicated input fields. If you're using a forum group, enter the optional **Message Thread ID** to send alerts to a specific topic. Here you can also tweak
which alerts you want to be notified of and which checks or check groups should trigger this channel.

@@ -96,4 +108,4 @@ Error: {{CHECK_ERROR_MESSAGE}}
- **Bot Token Security**: Keep your bot tokens secure and never share them publicly
- **Chat ID Privacy**: Chat IDs can be sensitive information, especially for private groups
-- **Bot Permissions**: Only give your bot the minimum necessary permissions in group chats
\ No newline at end of file
+- **Bot Permissions**: Only give your bot the minimum necessary permissions in group chats