@topvisor/n8n-nodes-telegram-send-message-custom
v1.0.4
Published
Telegram Send Message with custom JSON
Readme
🤖 n8n-nodes-telegram-send-message-custom
✨ Differences from the standard Telegram node in n8n:
- 📝 You can provide any data supported by the Telegram API without limitations
- either manually as a JSON string or as an object
- or using variables obtained from previous steps
- 🔀 Supports multiple Telegram methods via Operation select
sendMessagesendPhoto
- 🔍 The Output panel displays raw API request/response data, making debugging more transparent and straightforward
🚀 Custom n8n node to send Telegram messages using telegramApi credentials with custom JSON.
For example, adding custom reply_markup in JSON (inline keyboard, reply keyboard etc):
{
"reply_markup": {
"inline_keyboard": [
[
{
"text": "🌐 Open Website",
"url": "https://example.com"
}
],
[
{
"text": "✅ Confirm",
"callback_data": "confirm_action"
}
]
]
}
}📚 See the official Telegram Bot API docs.
⚙️ Install
In n8n:
Settings → Community Nodes → Install → @topvisor/n8n-nodes-telegram-send-message-custom
🛠️ Usage
- ➕ Add this node in workflow
- 🔑 Select your Telegram API credentials
- 🔀 Choose Operation (Send Message or Send Photo)
- 💬 Fill base fields (Chat ID, Text / Photo)
- 🧩 Paste raw JSON into Custom JSON (supports expressions)
