Skip to content

Telegram

Telegram nodes let you send messages and photos via a Telegram bot.

Both nodes require a Telegram connection configured with your bot token.

Nodes

Send Message

Send a text message to a chat.

FieldDescriptionNotes
Chat IDNumeric chat ID or @channel_usernameRequired. Supports templates
TextMessage text (supports Markdown or HTML)Required. Supports templates
Parse ModeMarkdown, HTML, or noneOptional
Disable NotificationSend silentlyDefault: false

Send Photo

Send a photo to a chat.

FieldDescriptionNotes
Chat IDNumeric chat ID or @channel_usernameRequired. Supports templates
Photo URLURL of the image to sendRequired. Supports templates
CaptionPhoto caption textOptional. Supports templates
Parse ModeMarkdown, HTML, or noneOptional

Finding Your Chat ID

  • For private chats: Send a message to your bot, then call https://api.telegram.org/bot<token>/getUpdates to see the chat ID
  • For groups: Add the bot to the group, send a message, and check getUpdates
  • For channels: Use @channel_username format or the numeric ID

Common Patterns

Alert Bot

  1. Cron — scheduled check
  2. HTTP Request — poll a service
  3. Switch — route based on status
  4. Telegram Send Message — alert on failure branch