Telegram
The telegram block allows users to send messages directly to a specified telegram channel. This is useful for creating real-time alerts or updates within telegram, providing timely notifications based on workflow events in Otomato.
Send notification to you
Simply follow the on-boarding process, open your telegram app or scan the QR code and it's done.
Connect to a specific channel
Step 1:
Create Your Telegram Bot
Open Telegram and start a chat with @BotFather.
Send /newbot, then follow the steps to:
Give your bot a name
Set a unique username (must end with bot)
Copy the bot token provided (e.g., 7697...Woo).
Step 2:
Add the Bot to Your Telegram Group
Go to your Telegram group.
Add your bot as a member.
Promote it to admin (or at least make sure it can send messages).
Step 3:
Find the chat_id and message_thread_id
Send a message in the topic you want the bot to post to.
Use this curl to get updates:
curl "<https://api.telegram.org/bot><YOUR_TOKEN>/getUpdates"
Extract:
chat.id → the group ID (e.g., -1002783820743)
message_thread_id → the topic ID (e.g., 3)
Step 4:
Configure the Otomato Telegram Action
Inside Otomato’s visual builder:
Add a Telegram → Send Message block.
Under Additional Parameters, fill in:
Chat Id
Message Thread Id
Webhook (https://api.telegram.org/bot<YOUR_TOKEN>/sendMessage)
Add the message content in the Param section.

✅ You’re Done!
Your workflow can now automatically send messages into a specific topic thread in Telegram using your bot.

Last updated