Telegram
Interact with Telegram
Telegram is a secure, cloud-based messaging platform that enables fast and reliable communication across devices and platforms. With over 700 million monthly active users, Telegram has established itself as one of the world's leading messaging services, known for its security, speed, and powerful API capabilities.
Telegram's Bot API provides a robust framework for creating automated messaging solutions and integrating communication features into applications. With support for rich media, inline keyboards, and custom commands, Telegram bots can facilitate sophisticated interaction patterns and automated workflows.
Learn how to create a webhook trigger in Ekinox that seamlessly initiates workflows from Telegram messages. This tutorial walks you through setting up a webhook, configuring it with Telegram's bot API, and triggering automated actions in real-time. Perfect for streamlining tasks directly from your chat!
Coming soon
Learn how to use the Telegram Tool in Ekinox to seamlessly automate message delivery to any Telegram group. This tutorial walks you through integrating the tool into your workflow, configuring group messaging, and triggering automated updates in real-time. Perfect for enhancing communication directly from your workspace!
Coming soon
Key features of Telegram include:
- Secure Communication: End-to-end encryption and secure cloud storage for messages and media
- Bot Platform: Powerful bot API for creating automated messaging solutions and interactive experiences
- Rich Media Support: Send and receive messages with text formatting, images, files, and interactive elements
- Global Reach: Connect with users worldwide with support for multiple languages and platforms
In Ekinox, the Telegram integration enables your agents to leverage these powerful messaging capabilities as part of their workflows. This creates opportunities for automated notifications, alerts, and interactive conversations through Telegram's secure messaging platform. The integration allows agents to send messages programmatically to individuals or channels, enabling timely communication and updates. By connecting Ekinox with Telegram, you can build intelligent agents that engage users through a secure and widely-adopted messaging platform, perfect for delivering notifications, updates, and interactive communications.
Usage Instructions
Integrate Telegram into the workflow. Can send and delete messages. Can be used in trigger mode to trigger a workflow when a message is sent to a chat.
Tools
telegram_message
Send messages to Telegram channels or users through the Telegram Bot API. Enables direct communication and notifications with message tracking and chat confirmation.
Input
Parameter | Type | Required | Description |
---|---|---|---|
botToken | string | Yes | Your Telegram Bot API Token |
chatId | string | Yes | Target Telegram chat ID |
text | string | Yes | Message text to send |
Output
Parameter | Type | Description |
---|---|---|
message | string | Success or error message |
data | object | Telegram message data |
telegram_delete_message
Delete messages in Telegram channels or chats through the Telegram Bot API. Requires the message ID of the message to delete.
Input
Parameter | Type | Required | Description |
---|---|---|---|
botToken | string | Yes | Your Telegram Bot API Token |
chatId | string | Yes | Target Telegram chat ID |
messageId | string | Yes | Message ID to delete |
Output
Parameter | Type | Description |
---|---|---|
message | string | Success or error message |
data | object | Delete operation result |
telegram_send_photo
Send photos to Telegram channels or users through the Telegram Bot API.
Input
Parameter | Type | Required | Description |
---|---|---|---|
botToken | string | Yes | Your Telegram Bot API Token |
chatId | string | Yes | Target Telegram chat ID |
photo | string | Yes | Photo to send. Pass a file_id or HTTP URL |
caption | string | No | Photo caption (optional) |
Output
Parameter | Type | Description |
---|---|---|
message | string | Success or error message |
data | object | Telegram message data including optional photo(s) |
telegram_send_video
Send videos to Telegram channels or users through the Telegram Bot API.
Input
Parameter | Type | Required | Description |
---|---|---|---|
botToken | string | Yes | Your Telegram Bot API Token |
chatId | string | Yes | Target Telegram chat ID |
video | string | Yes | Video to send. Pass a file_id or HTTP URL |
caption | string | No | Video caption (optional) |
Output
Parameter | Type | Description |
---|---|---|
message | string | Success or error message |
data | object | Telegram message data including optional media |
telegram_send_audio
Send audio files to Telegram channels or users through the Telegram Bot API.
Input
Parameter | Type | Required | Description |
---|---|---|---|
botToken | string | Yes | Your Telegram Bot API Token |
chatId | string | Yes | Target Telegram chat ID |
audio | string | Yes | Audio file to send. Pass a file_id or HTTP URL |
caption | string | No | Audio caption (optional) |
Output
Parameter | Type | Description |
---|---|---|
message | string | Success or error message |
data | object | Telegram message data including voice/audio information |
telegram_send_animation
Send animations (GIFs) to Telegram channels or users through the Telegram Bot API.
Input
Parameter | Type | Required | Description |
---|---|---|---|
botToken | string | Yes | Your Telegram Bot API Token |
chatId | string | Yes | Target Telegram chat ID |
animation | string | Yes | Animation to send. Pass a file_id or HTTP URL |
caption | string | No | Animation caption (optional) |
Output
Parameter | Type | Description |
---|---|---|
message | string | Success or error message |
data | object | Telegram message data including optional media |
Notes
- Category:
tools
- Type:
telegram