Skip to content
TriggerTelegramReal-timeUpdated May 2026

How do I trigger when my Telegram bot receives a message?

Short answer: Drop the "TelegramNew Telegram Update" trigger on your workflow canvas, add filters if you want them, and publish. It fires within seconds of the event in Telegram, not on a polling schedule.

Anatomy

What this trigger looks like in a workflow.

Drop it on the canvas. Configure a couple of fields. Publish.

In the builder
Trigger
New Telegram Update
When the matching event happens
telegramtelegram botnew messageedited messagechannel postcallback querywatch telegram botbot update
What this trigger returns
for the curious

You don’t need to read this. Tiny Command auto-maps every field into the visual picker so downstream nodes can pull values by clicking. We show it here for power users who want to know what’s on the wire.

{
"raw": {
"message": {
"chat": {
"id": 987654321,
"type": "private"
},
"date": 1712835600,
"from": {
"id": 987654321,
"is_bot": false,
"username": "johndoe",
"first_name": "John"
},
"text": "Hello, bot!",
"message_id": 456
},
"update_id": 123456789
},
"text": "Hello, bot!",
"chat_id": 987654321,
"from_id": 987654321,
"chat_type": "private",
"from_name": "John",
"update_id": 123456789,
"message_id": 456,
"from_username": "johndoe"
}
Output shape

Fields available to downstream nodes.

Every field below can be referenced by name in any action or filter that comes after this trigger.

FieldTypeExample
rawobject{ … }
raw.messageobject{ … }
raw.message.chatobject{ … }
raw.message.chat.idnumber987654321
raw.message.chat.typestring"private"
raw.message.datenumber1712835600
raw.message.fromobject{ … }
raw.message.from.idnumber987654321
raw.message.from.is_botbooleanfalse
textstring"Hello, bot!"
chat_idnumber987654321
from_idnumber987654321
chat_typestring"private"
from_namestring"John"
update_idnumber123456789
message_idnumber456
from_usernamestring"johndoe"
FAQ

Questions about New Telegram Update.

How does the New Telegram Update trigger work in Telegram?
Fires when your Telegram bot receives one of the selected update types: new message, edited message, channel post, callback query, etc. One Telegram webhook is registered per workflow via setWebhook and the bot's allowed_updates list is set from your selected events.
Is the New Telegram Update trigger real-time?
Yes. New Telegram Update uses webhooks or push subscriptions, not polling. Your workflow fires within seconds of the event happening in Telegram.
What data does New Telegram Update return?
The full event payload from Telegram. The output shape table on this page lists every field, its type, and an example value so you can map fields into downstream nodes.
Can I filter New Telegram Update so only some events start a workflow?
Yes. Add a Filter node right after the trigger and match on any field, whether that's subject, sender, status, or anything else in the payload. Workflows only continue when the filter passes.
Do I need Telegram admin permissions to use New Telegram Update?
For most Telegram accounts a standard user can authorize the trigger. Some Telegram plans require an admin to enable third-party webhooks. Check Telegram's docs if the trigger fails to register.

Build a workflow on this trigger.

One trigger. 25+ downstream actions. Zero glue.