CRMchat APIBeta

Telegram Webhooks

Receive raw Telegram updates from connected accounts

View in Markdown

Telegram webhooks deliver raw Telegram updates from connected accounts to your HTTPS endpoint. Use them to react to messages, edits, deletions, reactions, typing activity, and other Telegram events without polling.

Configure Telegram events from Settings → API Keys → Webhooks. You can subscribe to specific update types or use telegram.* to receive every supported update, then choose all accessible accounts in the selected workspaces or a fixed set of accounts.

Common update types

EventWhen it is sent
telegram.updateNewMessageA new message arrives in a private chat or basic group
telegram.updateNewChannelMessageA new message is posted in a channel or supergroup
telegram.updateEditMessageA private-chat or basic-group message is edited
telegram.updateEditChannelMessageA channel or supergroup message is edited
telegram.updateDeleteMessagesMessages are deleted from a private chat or basic group
telegram.updateDeleteChannelMessagesMessages are deleted from a channel or supergroup
telegram.updateMessageReactionsReactions on a message change
telegram.updateUserTypingA user starts typing, recording, or uploading in a private chat
telegram.updateChatUserTypingA user starts typing, recording, or uploading in a basic group
telegram.updateReadHistoryInboxIncoming messages are marked as read

Channel and supergroup activity often has a separate Channel event type. Subscribe to both variants when your integration handles private chats, groups, and channels.

For signature verification, retries, timeouts, and failure handling, see the webhooks guide.

On this page