🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

Telegram to Google Calendar, meetings handled in chat

Lisa Granqvist Partner Workflow Automation Expert

Your calendar shouldn’t require five taps, three screens, and a mental reset just to add “Call with Alex at 3.” But that’s what happens. And then the reminder shows up with zero context, so you’re still scrambling.

This Telegram Calendar automation hits founders and marketers first because the day is already chopped into meetings. Agency operators feel it too when client calls keep shifting and nobody wants to open yet another app. The goal is simple: you message (or send a voice note), the event lands in Google Calendar, and you get a smart reminder that actually helps.

Below is how the workflow runs, what it automates, and what you can change to fit how you schedule.

How This Automation Works

The full n8n workflow, from trigger to final output:

n8n Workflow Template: Telegram to Google Calendar, meetings handled in chat

The Problem: Calendar Updates Get Lost in the Shuffle

Scheduling looks “quick” until you count the hidden steps. You get a message, you switch apps, you hunt for the right date, you type the details, you guess the timezone, and you hope you didn’t miss a conflict. Then you do it again when the time changes. Add voice notes into the mix and it gets worse because you’re replaying audio, copying details by hand, and still second-guessing what you heard. The real cost isn’t just time. It’s the constant context switching that makes everything else feel harder than it should.

It adds up fast. Here’s where the friction usually shows up day to day.

  • Small scheduling mistakes happen more than you want to admit, like the wrong day, missing a link, or forgetting to add a prep note.
  • Voice messages are “convenient” until you have to listen twice and still manually build the event.
  • Generic reminders don’t help much, so you end up opening the calendar anyway to remember what the meeting is for.
  • When plans change, updating an event becomes another mini-task you postpone, which is how meetings slip through.

The Solution: Manage Google Calendar from Telegram (Text or Voice)

This workflow turns Telegram into your calendar front door. A message to your bot (or a voice note) kicks everything off. If you speak, the bot downloads the voice clip and transcribes it through OpenAI so it becomes clean text. Then an AI chat engine interprets what you meant (“move my 2pm to 3,” “what’s on tomorrow,” “delete Friday’s standup”) and passes that intent to a calendar agent that can create, update, delete, or fetch events directly in Google Calendar. Separately, a scheduled check runs every 15 minutes to look for upcoming meetings, removes duplicates, and generates a reminder message that sounds human and includes useful context.

The workflow starts in Telegram, then normalizes your request (text and voice follow the same path), and finally uses Google Calendar tools to take action. Reminders get delivered back into Telegram, with typing indicators so the interaction feels like a real assistant instead of a robot.

What You Get: Automation vs. Results

Example: What This Looks Like

Say you handle 5 meetings a week that get rescheduled, plus you add another 5 new ones. Manually, it’s usually about 5 minutes to create an event and about 5 minutes to update it (open calendar, find the right event, adjust time, add notes), so you’re spending roughly 100 minutes a week just keeping things accurate. With this workflow, you drop a quick Telegram message or a 20-second voice note, wait for the bot to confirm, and you’re done in about a minute per change. That’s around an hour back each week, without trying to “get more disciplined.”

What You’ll Need

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Telegram Bot to receive messages and voice notes
  • Google Calendar to create and manage events
  • OpenAI API key (get it from your OpenAI API dashboard)

Skill level: Intermediate. You’ll connect credentials, paste a few IDs (like your Telegram chat ID), and do basic testing.

Don’t want to set this up yourself? Talk to an automation expert (free 15-minute consultation).

How It Works

A Telegram message (or voice note) triggers everything. Text goes straight into the command flow. Voice notes get downloaded from Telegram first, then prepared for transcription.

Voice becomes text, and everything gets standardized. OpenAI transcribes the audio, then a Switch routes both message types into the same processing path so you’re not maintaining two separate automations.

An AI agent turns intent into calendar actions. The Gemini chat engine interprets what you want, and the “Calendar Manage!” agent calls Google Calendar tools to create, update, delete, or fetch events. A small memory buffer keeps the conversation coherent, which means follow-ups like “make it 30 minutes later” still make sense.

Reminders run on a schedule and arrive in Telegram. Every 15 minutes the workflow checks what’s coming up (about the next hour), removes duplicate alerts, and uses a reminder agent to write a friendly, tailored message. Then Telegram delivers it, including a typing indicator for a more natural feel.

You can easily modify reminder timing to match your day. Many people change it from “about an hour before” to something like 2 hours for deep work blocks, or 15 minutes for quick calls. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Schedule Trigger

This workflow starts from both a scheduled reminder and an incoming Telegram message. Configure each trigger so the automation knows when to run.

  1. Add and open Scheduled Reminder Trigger, then define the schedule that should run reminders (leave defaults if already set).
  2. Open Telegram Entry Trigger and connect it to your Telegram bot so user messages can initiate calendar actions.
  3. Verify the trigger flow: Scheduled Reminder TriggerRetrieve Upcoming Events and Telegram Entry TriggerRoute by Condition.

Credential Required: Connect your Telegram credentials in Telegram Entry Trigger.

Step 2: Connect Google Calendar

Google Calendar powers both scheduled reminders and conversational calendar edits.

  1. Open Retrieve Upcoming Events and connect your Google Calendar account.
  2. Ensure calendar tools are attached to Calendar Control Agent: Fetch Calendar Entries, Generate Calendar Entry, Modify Calendar Entry, and Remove Calendar Entry.
  3. Confirm the reminder flow: Retrieve Upcoming EventsRemove Duplicate AlertsCompose Reminder Agent.

Credential Required: Connect your Google Calendar credentials in Retrieve Upcoming Events and the Google Calendar Tool credentials for Fetch Calendar Entries, Generate Calendar Entry, Modify Calendar Entry, and Remove Calendar Entry. Add these credentials on Calendar Control Agent, not on the tool sub-nodes.

Step 3: Set Up AI Agents and Language Models

Two AI agents generate reminders and handle interactive calendar requests, with connected language models and memory.

  1. Open Gemini Chat Engine and connect it as the language model for both Compose Reminder Agent and Calendar Control Agent.
  2. Open OpenAI Chat Engine to handle voice-driven requests after 📥 Retrieve Voice Clip.
  3. Ensure Compact Memory Buffer is connected as memory for Calendar Control Agent so the agent can retain conversational context.

Credential Required: Connect your Google Gemini credentials in Gemini Chat Engine and your OpenAI credentials in OpenAI Chat Engine. For Compact Memory Buffer and other AI tools, add credentials on the parent node (Calendar Control Agent), not on the sub-node.

Step 4: Configure Routing, Mapping, and Parallel Merges

Telegram requests are routed, mapped, and merged with AI outputs before reaching the calendar agent.

  1. Open Route by Condition and define rules for message types (text vs voice) to direct to Dispatch Typing Signal or 📥 Retrieve Voice Clip.
  2. Configure Dispatch Typing Signal and Typing Indicator B to show typing status in Telegram before replying.
  3. In Map Data Fields, map any needed fields for message context before the merge step.
  4. OpenAI Chat Engine outputs to both Combine Streams inputs in parallel.
  5. Map Data Fields outputs to both Combine Streams inputs in parallel.
  6. Confirm the merge flow: Combine StreamsTyping Indicator BCalendar Control Agent.

⚠️ Common Pitfall: If Combine Streams doesn’t receive data from both inputs, downstream nodes may appear to stall. Test both text and voice paths to ensure the merge receives expected data.

Step 5: Configure Output and Telegram Notifications

Final responses and reminders are delivered through Telegram after AI processing.

  1. Connect the output of Calendar Control Agent to Post AI Reply to send interactive responses.
  2. Ensure the reminder branch runs: Compose Reminder AgentDeliver Reminder Notice.
  3. Connect Telegram credentials to all Telegram nodes (5+ nodes handle typing indicators, message retrieval, and replies).

Credential Required: Connect your Telegram credentials in Dispatch Typing Signal, Typing Indicator B, 📥 Retrieve Voice Clip, Post AI Reply, and Deliver Reminder Notice.

Step 6: Test and Activate Your Workflow

Validate each branch, then activate the workflow for production use.

  1. Click Execute Workflow to run a manual test and verify the scheduled reminder branch reaches Deliver Reminder Notice.
  2. Send a Telegram message to trigger Telegram Entry Trigger and confirm a response is posted by Post AI Reply.
  3. Check that Calendar Control Agent can create, modify, and remove events using its tool nodes.
  4. When tests pass, switch the workflow to Active to enable live reminders and conversational calendar management.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Common Gotchas

  • Google Calendar OAuth credentials can expire or lose permissions after a security update. If events stop being created, check the n8n Credentials screen and re-auth the Google account first.
  • If you’re using Wait nodes or external processing (like transcription), processing times vary. Bump up the wait duration if downstream nodes fail on empty responses, especially when Telegram voice files are longer.
  • Default AI prompts are generic. Add your preferred tone and formatting early (formal vs casual, how to write titles, what details to include) or you will keep rewriting the bot’s messages.

Frequently Asked Questions

How long does it take to set up this Telegram Calendar automation automation?

About 30 minutes if you already have your Telegram bot and Google account ready.

Do I need coding skills to automate Telegram Calendar automation?

No. You’ll mostly connect accounts and paste a few values like chat IDs and timezone preferences.

Is n8n free to use for this Telegram Calendar automation workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in OpenAI API costs for voice transcription, which are usually a few cents per transcription depending on length.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you more control but you’ll handle updates and uptime.

Can I customize this Telegram Calendar automation workflow for different reminder timing?

Yes, and it’s one of the easiest tweaks. Change the Scheduled Reminder Trigger interval (it runs every 15 minutes by default), and adjust the “upcoming window” used when retrieving events (it checks roughly the next hour). You can also customize the reminder message style in the Compose Reminder Agent prompt, like adding location, call links, prep questions, or a more formal tone. If you want reminders in a group chat, you can swap the Telegram chat ID handling so it routes to different chats.

Why is my Telegram connection failing in this workflow?

Usually it’s the bot token or chat ID being wrong, or the bot hasn’t “seen” the chat yet. Regenerate or re-copy the BotFather token, then confirm you’re using the right chat ID for where you’re testing. If your bot works for messages but not voice, double-check that the workflow can download voice files (Telegram permissions and the node settings) before it hits transcription.

How many events can this Telegram Calendar automation handle?

A typical setup can handle dozens of commands a day without drama, and the reminder loop just runs every 15 minutes. On n8n Cloud Starter, you’re limited by monthly executions; self-hosting removes that cap and shifts the limit to your server. If you plan to run this for a whole team with lots of chats, you’ll want to add basic rate limiting and smarter routing so one busy day doesn’t spike your AI usage.

Is this Telegram Calendar automation better than using Zapier or Make?

Often, yes. This workflow relies on an AI agent with memory plus multiple calendar actions (create, update, delete, fetch) and that’s awkward to model as a bunch of separate Zaps or Make scenarios. n8n also gives you a self-host option, which matters when reminders run on a schedule and execution counts add up. The tradeoff is setup: you’re configuring a “real” workflow, not a two-click template. If you want, Talk to an automation expert and you’ll get a straight answer for your situation.

Once this is in place, your calendar stops being another app you manage and starts behaving like a system that keeps up with you. Set it up once, then let Telegram handle the busywork.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal