🔓 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

Google Sheets + Google Calendar, more booked calls

Lisa Granqvist Partner Workflow Automation Expert

Your website chat is busy, but your calendar isn’t. Leads ask questions, disappear, come back three days later, and you’re left scrolling transcripts and retyping notes into a spreadsheet. It’s messy. And honestly, it’s avoidable with booked calls automation.

This hits marketing managers first because they pay for the traffic. But consultants doing sales calls and agency owners juggling multiple pipelines feel it just as much. The outcome is simple: more qualified meetings booked, with clean summaries waiting for you.

This guide breaks down the workflow, what you need to run it, and what to expect once it’s live.

How This Automation Works

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

n8n Workflow Template: Google Sheets + Google Calendar, more booked calls

Why This Matters: Website Chats That Don’t Turn Into Meetings

If you rely on website chat to capture demand, you already know the pattern. A visitor asks a few questions, you answer (or your team does), then the conversation stalls because scheduling is awkward. Somebody has to collect an email, offer times, check a calendar, send a confirmation, and remember to log what was said. Miss one step and the lead goes cold. Do this all week and you end up with “busy” chat activity that never becomes revenue.

It adds up fast. Here’s where it usually breaks down in real life.

  • Leads get qualified inconsistently because different people ask different questions, and the important details never show up in the notes.
  • You lose time to calendar back-and-forth, especially when someone requests “next week” and you still have to manually check availability.
  • Manual copy-paste into Google Sheets creates duplicates, missing fields, and follow-ups that slip through the cracks.
  • When a lead returns later, you don’t have context, so the conversation restarts from zero and the experience feels less “premium.”

What You’ll Build: An AI Chat Qualifier That Books Calls for You

This workflow turns your website chat into a sales assistant that can qualify leads, book meetings, and keep your records clean in the background. When a visitor sends a message, the automation engages them as a friendly rep (“Hassan”) and asks smart questions to figure out intent, fit, and urgency. If the lead is qualified, it checks your Google Calendar availability in real time and offers bookable options that avoid conflicts. Once a time is confirmed, it creates the calendar event, adds the attendee properly, and sends a professional confirmation email through Gmail. Finally, it writes a clear conversation summary back to Google Sheets so you (or your team) can prepare for the call without reading a long transcript.

The workflow starts with an incoming chat webhook, then uses AI plus short-term memory to keep the conversation coherent. In the middle, it looks up prior history in Google Sheets and checks calendar slots before proposing a meeting. At the end, you get a booked calendar event, an email confirmation, and a neat summary row in your sheet.

What You’re Building

Expected Results

Say you get 10 meaningful website chats a week and you normally spend about 20 minutes each doing the same things: qualify, collect contact info, check Google Calendar, propose times, then log notes into Google Sheets. That’s roughly 3 hours of admin work, plus the “I’ll get back to you” delay that kills momentum. With this workflow, the human time is closer to zero until a meeting is actually booked. The automation handles the conversation, creates the event, emails the details, and writes the summary while you stay focused elsewhere.

Before You Start

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Google Sheets for the lead database and summaries
  • Google Calendar to check availability and create meetings
  • Gmail to send confirmation emails automatically
  • OpenAI API key (get it from your OpenAI dashboard)

Skill level: Advanced. You won’t write “code from scratch,” but you will configure OAuth connections, prompts, and a few moving parts carefully.

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

Step by Step

A website chat message triggers everything. Your chat tool posts the visitor’s message to an n8n webhook, which kicks off the conversation flow immediately. No inbox triage. No waiting for someone to notice.

The AI qualifies the lead and keeps context. An AI Agent runs the conversation using your qualification approach, while a memory component keeps recent messages “in mind” so the replies stay consistent across a longer exchange.

History and knowledge get pulled in when useful. The workflow can look up prior interactions in Google Sheets to avoid repeating questions, and it can fetch reference info from a doc so the assistant answers pricing and service questions more accurately.

Qualified leads are offered real availability, then booked. The automation checks Google Calendar for open slots, proposes options, and when the lead confirms, it creates the event and sends a Gmail confirmation with the details.

You can easily modify the qualification criteria to match your ideal customer profile based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Chat Trigger

Set up the incoming chat entry point so conversations can flow into the qualification agent.

  1. Add or open Incoming Chat Trigger and confirm Public is set to true.
  2. Copy the webhook URL from Incoming Chat Trigger and connect it to your chat widget or front-end chat client.
  3. Ensure Incoming Chat Trigger connects directly to Qualification Agent.

Step 2: Connect Google Docs and Google Sheets

Provide the knowledge base and CRM-style logging to support qualification and summary updates.

  1. Open Fetch Docs Reference and set Operation to get.
  2. Set Document URL to [YOUR_ID] in Fetch Docs Reference.
  3. Credential Required: Connect your googleDocsOAuth2Api credentials in Fetch Docs Reference.
  4. Open Update Sheet Record and confirm Operation is appendOrUpdate.
  5. Set Document ID to [YOUR_ID] and Sheet Name to Sheet1 in Update Sheet Record.
  6. Verify the column mappings in Update Sheet Record, including {{$now.format('yyyy-MM-dd HH:mm:ss')}} for the date.
  7. Credential Required: Connect your googleSheetsOAuth2Api credentials in Update Sheet Record and Lookup Prior History.

⚠️ Common Pitfall: If Update Sheet Record can’t match rows, confirm the Matching Columns includes Email and the sheet headers match your schema.

Step 3: Set Up the AI Qualification Layer

Configure the LLM routing, memory, and agent prompts that drive lead qualification.

  1. Open Lead LLM Router and set Model to openai/gpt-4.1.
  2. Credential Required: Connect your openRouterApi credentials in Lead LLM Router.
  3. Open Conversation Memory and set Session Key to {{$json.sessionId}} with Session ID Type set to customKey and Context Window Length to 10.
  4. Open Qualification Agent and keep Text set to {{$json.chatInput}}{{$json.message}}.
  5. Confirm Qualification Agent uses the provided system prompt under Prompt Type set to define.

The AI tools and memory nodes (Conversation Memory, Fetch Docs Reference, Lookup Prior History, Update Sheet Record, Schedule Meeting Agent) are connected to Qualification Agent. Any credentials required should be added on the tool nodes, while LLM credentials belong on Lead LLM Router.

Step 4: Configure Scheduling and Calendar Actions

Set up the booking assistant, calendar availability, and event creation flow.

  1. Open Calendar LLM Router and set Model to anthropic/claude-sonnet-4.
  2. Credential Required: Connect your openRouterApi credentials in Calendar LLM Router.
  3. Open Schedule Meeting Agent and confirm Text is set to {{$fromAI('Prompt__User_Message_', ``, 'string')}}.
  4. Review the system message inside Schedule Meeting Agent to ensure your company name and timezone are correct.
  5. Open Retrieve Calendar Slots and confirm Operation is getAll and Limit is 10.
  6. Set Time Min to {{$fromAI("afterDate")}} and Time Max to {{$fromAI("beforeDate")}} in Retrieve Calendar Slots.
  7. Open Primary Calendar Create and verify Start is {{$fromAI("startDate")}} and End is {{$fromAI("endDate")}}.
  8. In Primary Calendar Create, confirm Summary is {{$fromAI("meetingSummary")}} and attendees include {{$fromAI("userEmailAddress")}} plus your internal email.
  9. Credential Required: Connect your googleCalendarOAuth2Api credentials in Retrieve Calendar Slots and Primary Calendar Create.

⚠️ Common Pitfall: If slots are empty, verify the Time Zone in Retrieve Calendar Slots matches your calendar’s timezone and that the calendar email is correct.

Step 5: Configure Email Confirmation and Response Parsing

Send meeting confirmation emails and normalize the AI response before returning it to chat.

  1. Open Dispatch Gmail Notice and confirm Send To is {{$fromAI('To', ``, 'string')}}.
  2. Review the HTML in Message and replace placeholders like [YOUR_COMPANY] and links with your live branding.
  3. Set Subject to {{$fromAI('Subject', ``, 'string')}} in Dispatch Gmail Notice.
  4. Credential Required: Connect your gmailOAuth2 credentials in Dispatch Gmail Notice.
  5. Open Response Extractor and leave the JavaScript as-is to extract chatResponse and threadId.
  6. Confirm execution flow: Incoming Chat TriggerQualification AgentResponse Extractor.

OpenAI-style responses can change shape. The logic inside Response Extractor handles multiple formats to keep chat output consistent.

Step 6: Test and Activate Your Workflow

Run a controlled test to confirm qualification, scheduling, and logging behaviors before going live.

  1. Click Execute Workflow and send a test message through the chat interface connected to Incoming Chat Trigger.
  2. Verify Qualification Agent responds with a qualification question and that Response Extractor outputs chatResponse.
  3. Provide a name and email to ensure Update Sheet Record appends or updates in your Google Sheet.
  4. Request a meeting time and confirm Retrieve Calendar Slots and Primary Calendar Create execute successfully.
  5. Check your inbox to confirm Dispatch Gmail Notice sends the confirmation email.
  6. When satisfied, toggle the workflow to Active for production use.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Troubleshooting Tips

  • Google Calendar credentials can expire or need specific permissions. If things break, check your Google OAuth connection inside n8n’s Credentials menu first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Default prompts in AI nodes are generic. Add your brand voice early or you’ll be editing outputs forever.

Quick Answers

What’s the setup time for this booked calls automation automation?

Plan for about 3-4 hours, mostly for credentials, prompts, and testing.

Is coding required for this booked calls automation?

No. You’ll mainly connect Google and OpenAI accounts, then tweak prompts and field mappings inside n8n.

Is n8n free to use for this booked calls 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 (often around a few cents per conversation, 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 unlimited executions but requires basic server management.

Can I modify this booked calls automation workflow for different use cases?

Yes, and you probably should. You can adjust the Qualification Agent prompts to match your offer (agency services, coaching, SaaS demos), then change what gets written into Google Sheets (extra columns like budget, timeline, or use case). If you prefer a different email sender, swap the Gmail node for another mail provider. You can also tighten or loosen the “book a meeting” rule by editing the logic that decides when to check Google Calendar availability.

Why is my Google Calendar connection failing in this workflow?

Usually it’s expired OAuth access or the wrong Google account connected. Reconnect Google Calendar in n8n Credentials, then confirm the calendar you’re booking on is the same one the availability check is reading. If you’re testing with lots of rapid messages, Google can also throttle requests, so slow down tests and try again.

What volume can this booked calls automation workflow process?

A lot, as long as your AI and Google API limits can keep up. On n8n Cloud, the practical limit is your monthly execution quota (Starter is fine for small sites; bigger teams typically move up). If you self-host, there’s no execution cap, but your server resources become the bottleneck. In day-to-day use, most teams run one execution per chat message plus a few more for booking and logging, so high traffic can add up.

Is this booked calls automation automation better than using Zapier or Make?

Often, yes, because this is not a simple “if chat message then create row” automation. You need memory, branching logic, and richer control over AI prompts and responses, and n8n handles that without making every extra path feel expensive. Zapier or Make can still work if you reduce the scope to a basic lead capture and a manual booking link, but you’ll lose the automated qualification layer that drives higher-quality meetings. The other consideration is hosting: n8n can be self-hosted for unlimited executions, which changes the cost math once chat volume rises. If you want a second opinion on the tradeoffs for your stack, Talk to an automation expert.

Once this is running, your chat stops being a “message box” and starts acting like a booking channel. The workflow handles the repetitive parts, so your team shows up to calls prepared.

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