Platform
Chatbot Builder Bulk Messaging Team Inbox Mini CRM API & Webhooks AI Integration WhatsApp Flows
Industries
E-commerce & D2C Real Estate Education Healthcare Finance & BFSI Logistics Hospitality Retail
Integrations 📚 Learn 🗂 Codex Compare Pricing About Contact Start Free Trial →

Google Forms + WhatsApp API Integration — Complete Guide 2025

A Google Form submitted and never acknowledged is a lost lead. An instant WhatsApp confirmation — "We received your enquiry, here's what happens next" — fires within 30 seconds of submission. Every submission becomes a conversation.

Connect Google Forms + WhatsApp → Talk to an Expert
30 sec
WhatsApp confirmation fires after form submission
94%
Form confirmation WhatsApp open rate vs 28% email
Any form
Lead capture, registration, feedback, application
Free
Google Forms is free — automation via Apps Script is too

Top use cases for Google Forms + WhatsApp API

Google Forms is the most-used form tool in India — for lead capture, registrations, feedback, and applications. WA.Expert connects to Google Forms so every submission fires an instant WhatsApp to the respondent and/or your team.

📩
Lead capture form → WhatsApp
Contact form or enquiry form submission fires WhatsApp to the lead within 30 seconds.
🎓
Registration form → confirmation
Event, course or webinar registration form fires WhatsApp confirmation with details and calendar link.
Feedback form → acknowledgement
Customer feedback form submission fires a "Thank you for your feedback" WhatsApp.
📋
Application form → next steps
Job application, admission, or loan application form fires WhatsApp with next steps and timeline.

How Google Forms events trigger WhatsApp messages

Google Forms triggerWhatsApp action (WA.Expert)Business impact
Form submittedInstant WhatsApp confirmation to respondent within 30 secondsLead engagement
Form submittedInternal WhatsApp alert to sales team with submission detailsInstant lead notification
Registration formWhatsApp with event details, calendar invite link, joining instructionsEvent management
Feedback formWhatsApp "Thank you" acknowledgement with next stepsCustomer relationship
Application formWhatsApp with application reference number and timelineProfessional follow-through

How to connect Google Forms to WhatsApp API

1

Enable form response collection to Sheets

In Google Forms → Responses → Link to Sheets. This creates a connected Google Sheet that receives all form submissions in real-time.

2

Add Google Apps Script trigger

In the linked Sheet: Extensions → Apps Script. Add an onFormSubmit() trigger that calls WA.Expert API with the respondent's phone and form answers.

3

Identify the phone number question

In your Apps Script, identify which column contains the phone number (from the "Phone Number" question in your Form). Pass this to WA.Expert as the "to" field.

4

Map form answers to WhatsApp variables

Pass relevant form answers (name, email, course selected, enquiry type) as variables in your WhatsApp template. The confirmation message can be personalised to what they submitted.

5

Test with a sample submission

Submit the form with your own phone number. Verify the WhatsApp confirmation arrives within 30 seconds. Check that the variables are correctly populated.

Sample Google Forms → WhatsApp configuration

// Apps Script: onFormSubmit trigger // Fires for every Google Form submission function onFormSubmit(e) { var responses = e.namedValues; var phone = responses["Phone Number"][0]; var name = responses["Your Name"][0]; var course = responses["Course Interest"][0]; UrlFetchApp.fetch("https://api.wa.expert/v1/send", { method: "POST", payload: JSON.stringify({ to: phone, template: "form_confirmation", variables: {name, course} }) }); }

WA.Expert handles WhatsApp API authentication, template approval, and delivery — you only pass the trigger data from Google Forms. No WhatsApp API expertise needed on your end.

Google Forms + WhatsApp — common questions

Does Google Forms have a direct WhatsApp integration?
Not natively. The integration is achieved via Google Apps Script (free, built into Google Workspace) or via Zapier/Pabbly/Make. Apps Script is the most popular approach for Indian users as it has no monthly cost.
Can I send WhatsApp to both the form submitter and my team?
Yes — your Apps Script or Zapier/Pabbly flow can send two WhatsApp messages: one to the respondent's phone number (confirmation) and one to your team's number (lead notification with form details).
What if the form doesn't collect phone numbers?
If your existing form doesn't have a phone field, add one. Make it optional initially and communicate that it's for WhatsApp updates. Over time, most users provide it when they understand the benefit. Alternatively, collect email and send via email for those without phone.
Can I personalise the WhatsApp based on what was submitted in the form?
Yes — if a form has a "Product Interest" dropdown with options A, B, C — your Apps Script can check the answer and select different WhatsApp templates or variables. For example, a "Course Interest" form can fire a course-specific brochure to each submitter.
How fast does the WhatsApp arrive after form submission?
With Google Apps Script: typically 5–30 seconds. With Zapier: 1–2 minutes (Zapier runs checks every 1–5 minutes on free plans). With Pabbly or Make: near-instant on webhook triggers.
Can I use Google Forms + WhatsApp for appointment booking?
Partially — you can collect preferred appointment time via Google Forms and send a WhatsApp confirmation. For true real-time slot availability and booking prevention (so two people don't book the same slot), use Calendly instead.

More WhatsApp integration guides

Ready to send WhatsApp from every Google Form submission?

Instant WhatsApp confirmation, internal lead alerts, personalised follow-up — all from your existing Google Forms. Free setup with Apps Script.

Start Free Trial → Talk to an Expert