🔓 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 Sheets, approved LinkedIn drafts

Lisa Granqvist Partner Workflow Automation Expert

Writing LinkedIn consistently is easy to plan and painfully slow to execute. You start with a good idea, then the rabbit hole begins: research, structure, “does this sound like me?”, rewrite, second-guess, and suddenly 45 minutes are gone.

This Telegram LinkedIn automation hits hardest when you’re the person who has to publish regularly. A marketing manager trying to keep a content calendar full. A founder posting between calls. Or an agency lead who needs drafts that clients can actually approve without chaos.

This workflow turns a quick Telegram message into a draft, asks for your approval in Telegram, and saves the final version into Google Sheets as a clean, searchable post library. You’ll see how it works, what you need, and what to tweak so it matches your voice.

How This Automation Works

Here’s the complete workflow you’ll be setting up:

n8n Workflow Template: Telegram to Google Sheets, approved LinkedIn drafts

Why This Matters: LinkedIn Drafts Get Stuck in “Almost Done”

The real problem isn’t coming up with ideas. It’s finishing them. A half-written LinkedIn post lives in Notes, Slack, a Google Doc, or your head, then gets “saved for later” until it’s outdated. When you do carve out time, you end up re-researching the same topic, rewriting the same intro, and trying to remember what angle you even wanted. Honestly, the mental switching is worse than the writing. And if you’re collaborating, approvals turn into a messy thread of “can you tweak the hook?” and “wait, which version is final?”

It adds up fast.

  • Each post turns into a mini project because research, drafting, and polishing happen in three different places.
  • Approvals get vague (“looks good”) until you try to publish, then new feedback appears at the worst moment.
  • Your best posts don’t become reusable assets because there’s no single library you can search and build from.
  • When you’re busy, consistency dies first, and restarting the habit is harder than keeping it.

What You’ll Build: A Telegram Approval Loop That Saves Final Posts to Sheets

This workflow gives you a simple, repeatable loop for creating LinkedIn content with AI, while keeping you in control. It starts the moment you message your Telegram bot with a topic like “Write a LinkedIn post about AI in marketing.” The AI agent then pulls in outside context using a web search tool (Tavily), so the draft isn’t just generic fluff. Next, it generates a LinkedIn-ready post with your chosen model (OpenAI is included here), maps the draft into clean fields, and sends it back to you in Telegram with a plain question: “Good to go?” If you approve, it appends the final copy into Google Sheets. If you reject it and leave feedback, the workflow routes your notes into a revision chain and asks again until you’re happy.

The workflow starts in Telegram, so adding ideas feels lightweight. Research and drafting happen automatically in the middle, then the approval gate keeps quality high. Finally, Google Sheets becomes your content library, which means your “published-ready” posts stop disappearing into chat history.

What You’re Building

Expected Results

Say you aim for 5 LinkedIn posts a week. Manually, a realistic flow is 10 minutes of research, 25 minutes drafting, and another 10 minutes editing, so about 45 minutes per post (nearly 4 hours weekly). With this workflow, you spend maybe 2 minutes sending the prompt in Telegram and about 8 minutes reviewing and giving feedback; the rest runs in the background. That’s around 50 minutes of hands-on time per week instead of hours, plus every approved post lands in Google Sheets automatically.

Before You Start

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Telegram for collecting prompts and approvals.
  • Google Sheets to store approved LinkedIn copy.
  • Tavily API key (get it from your Tavily dashboard)

Skill level: Beginner. You’ll mostly be connecting accounts, pasting API keys, and adjusting a couple of text prompts.

Want someone to build this for you? Talk to an automation expert (free 15-minute consultation).

Step by Step

A Telegram message kicks everything off. You send your topic or rough angle to your Telegram bot, and that single message becomes the “source of truth” for the draft request.

The workflow researches before it writes. The AI drafting agent calls the Tavily web search tool to gather context, then uses the OpenAI chat model to create a LinkedIn-style draft based on what it found (and what you asked for).

You get an approval prompt in Telegram. The workflow maps the draft into consistent fields, sends you the post, and asks if it’s good to go. A classifier reads your reply and decides if it’s an approval or revision request.

Approved posts get stored; rejected drafts get improved. If you approve, the workflow appends a row to Google Sheets. If you give feedback, it runs a revision chain, updates the draft fields, and sends the improved version back for another pass.

You can easily modify the research depth and the writing tone based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Telegram Trigger

This workflow starts when a Telegram message is received.

  1. Add the Telegram Intake Trigger node and set Updates to message.
  2. Credential Required: Connect your telegramApi credentials in Telegram Intake Trigger.
  3. Verify that the webhook is created by saving the workflow and following the Telegram bot setup prompts in n8n.
Tip: Make sure your Telegram bot has permission to receive messages, otherwise the trigger won’t fire.

Step 2: Connect Telegram

Use Telegram to send the drafted post to the user and collect approval feedback.

  1. Add the Request Approval Message node and set Operation to sendAndWait.
  2. Set Chat ID to {{ $('Telegram Intake Trigger').item.json.message.chat.id }}.
  3. Set Message to =Good to go? {{ $json.post }} and Response Type to freeText.
  4. Credential Required: Connect your telegramApi credentials in Request Approval Message.

Step 3: Set Up AI Drafting and Tools

Generate the initial LinkedIn post using AI and web search.

  1. Add AI Drafting Agent and set Text to {{ $json.message.text }}.
  2. In AI Drafting Agent, keep the system message defining the LinkedIn post requirements and hashtags.
  3. Add OpenAI Chat Engine and set Model to gpt-4.1-mini.
  4. Credential Required: Connect your openAiApi credentials in OpenAI Chat Engine.
  5. Ensure OpenAI Chat Engine is connected as the language model for AI Drafting Agent, Approval Text Classifier, and Revision LLM Chain.
  6. Add the tool node Tavily Web Search with Query set to {{ /*n8n-auto-generated-fromAI-override*/ $fromAI('Query', ``, 'string') }} and Tool Description set to use this tool to search the web.
  7. Tavily Web Search is connected as a tool for AI Drafting Agent — add tavilyApi credentials to the parent AI Drafting Agent setup.
⚠️ Common Pitfall: If Tavily credentials aren’t available to the agent, web search will fail and the drafted post may be generic or incomplete.

Step 4: Configure the Review and Revision Loop

Map the drafted post, collect feedback, classify approval, and revise if needed.

  1. Add Map Draft Fields and create a field named post with value {{ $json.output }}.
  2. Add Approval Text Classifier and set Input Text to {{ $json.data.text }}.
  3. Keep the two classifier categories: Approved and Denied, with their descriptive prompts.
  4. Configure Revision LLM Chain with Text set to =the post to revise:{{ $('Map Draft Fields').item.json.post }} the human feedback:{{ $('Request Approval Message').item.json.data.text }}.
  5. Add Map Revised Output and set output to {{ $json.text }}, then connect it back to Map Draft Fields.
  6. Approval Text Classifier outputs to both Append Sheet Row and Revision LLM Chain in parallel, so be sure both branches are connected.
Tip: The loop from Map Revised OutputMap Draft Fields ensures revised content is routed back for re-approval.

Step 5: Configure Output to Google Sheets

Store approved responses in Google Sheets for tracking.

  1. Add Append Sheet Row and set Operation to append.
  2. Select Document ID 148yOBNcRTo7-xTwlz_KnCiJRiVh7dVyo7CN3THPi0sU and Sheet Name الورقة1.
  3. Define columns for Name and Email (map actual fields based on your data model).
  4. Credential Required: Connect your googleSheetsOAuth2Api credentials in Append Sheet Row.
⚠️ Common Pitfall: If you don’t map the row values, the append action will create empty rows.

Final Step: Test and Activate Your Workflow

Validate each branch and then turn the workflow on for production use.

  1. Click Execute Workflow and send a Telegram message to the bot to trigger Telegram Intake Trigger.
  2. Confirm that Request Approval Message sends the drafted post and waits for your reply.
  3. Reply with an approval phrase (for example, “OK”) to confirm that Approval Text Classifier routes to Append Sheet Row.
  4. Reply with revision feedback to confirm that Revision LLM Chain and Map Revised Output loop back to Map Draft Fields.
  5. When successful, enable the workflow using the Active toggle.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Troubleshooting Tips

  • Telegram bot credentials can break if you regenerate the token or point the bot at the wrong chat. If messages stop arriving, check the bot token in n8n and confirm you’re messaging the correct bot in Telegram.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Google Sheets permissions are the silent killer. If rows aren’t being appended, check the connected Google account, the spreadsheet ID, and that the target sheet tab name still matches what the workflow expects.

Quick Answers

What’s the setup time for this Telegram LinkedIn automation?

About 30 minutes if your accounts are ready.

Is coding required for this LinkedIn drafting automation?

No. You connect Telegram, Google Sheets, and your AI keys, then adjust a couple of prompts.

Is n8n free to use for this Telegram LinkedIn 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 and Tavily API usage costs.

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 unlimited executions but requires basic server management.

Can I modify this Telegram LinkedIn automation workflow for different use cases?

Yes, and you should. You can change the “AI Drafting Agent” prompt to enforce your tone, structure (hook, body, CTA), and formatting rules. If you don’t want web research, remove the Tavily Web Search tool and have the agent draft from your Telegram prompt only. Common tweaks include adding a hashtag rule, generating two alternative hooks, or saving extra columns in Google Sheets like topic, audience, and status.

Why is my Telegram connection failing in this workflow?

Usually it’s the bot token or chat permissions. Re-check the token in your Telegram Trigger/Send Message nodes, then confirm you’re talking to the same bot and not a duplicate. If the approval reply isn’t being recognized, your classifier may be too strict, so adjust it to treat short replies like “ok”, “yes”, or “ship it” as approval.

What volume can this Telegram LinkedIn automation workflow process?

For most small teams, plenty.

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

Often, yes, because the “human-in-the-loop” logic is the whole point here. You need branching (approve vs revise), an AI agent step, and the ability to loop drafts back through the same mapping and approval message. n8n handles that without turning every decision into a paid task. Zapier or Make can work, but the flows get expensive and awkward as soon as you add revision cycles. If you only want a one-shot draft saved to a sheet, simpler tools are fine. If you want approvals done cleanly in Telegram, n8n is usually the calmer choice. Talk to an automation expert if you’re not sure which fits.

Once this is running, your process becomes simple: idea in, approved draft out, and a growing Google Sheets library you can reuse anytime. The workflow handles the repetitive stuff so you can focus on saying something worth reading.

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