Automate Webflow Form to Google Sheets with n8n

Discover how to automate Webflow form submissions directly into Google Sheets using n8n. This workflow saves time by appending form data automatically, reducing manual errors and improving data management efficiency.
webflowTrigger
code
googleSheets
+1
Workflow Identifier: 1541
NODES in Use: Webflow Trigger, Code, Google Sheets, Sticky Note

Press CTRL+F5 if the workflow didn't load.

Learn how to Build this Workflow with AI:

Visit through Desktop for Best experience

What This Automation Does

This workflow gets form data from Webflow and puts it into Google Sheets automatically.
It stops the need to copy data by hand and saves time and mistakes.

When the user submits a Webflow form, the workflow starts fast.
A code node grabs the form details and adds the time it was sent.

Then the info goes to Google Sheets as a new row.
The workflow can add headers if the sheet is empty.

All happens almost right away so the sheet stays correct and ready.
This means no effort is lost and data stays clean.


Tools and Services Used

  • Webflow: Collects form submissions from website visitors.
  • n8n Workflow Automation: Connects the Webflow form to Google Sheets.
  • Google Sheets: Stores form data in organized rows for tracking.

Inputs, Processing Steps, and Output

Inputs

  • Customer form submission from Webflow with fields like Name, Email, and Message.
  • Webhook trigger listens for each form submission event.

Processing Steps

  • Webhook node starts the workflow when a form sends data.
  • Code node extracts the data fields and adds a date timestamp.
  • Google Sheets node appends the data as a new row, mapping fields to columns and creating headers if needed.

Output

A new row in the Google Sheet with form submission fields and a submission timestamp.
The sheet grows with every form entry automatically.


Beginner Step-by-Step: How to Use This Workflow in n8n

Step 1: Download and Import Workflow

  1. Download the workflow file using the Download button on this page.
  2. Open n8n editor where you manage workflows.
  3. Use the Import from File option to add the downloaded workflow.

Step 2: Add Credentials

  1. Fill in your Webflow API credentials created from your Webflow app (Client ID and Secret).
  2. Authorize Google Sheets with your Google account so n8n can access the spreadsheet.

Step 3: Configure Workflow Nodes

  1. Update the Webhook node with your Webflow Site ID.
  2. In the Google Sheets node, enter the Document ID and select the right sheet name.
  3. Check the Code node for the script below; update if you added extra form fields:
    const formData = $input.all()[0].json.payload.data;
    const Date = $input.all()[0].json.payload.submittedAt || new Date();
    
    return {
      ...formData, // expands form fields into the output
      Date
    };
    

Step 4: Test and Activate

  1. Submit a test form through your Webflow site to verify the workflow captures data correctly.
  2. Look in Google Sheets to see if the new row appears with correct info and date.
  3. Turn the workflow to Active in n8n to start running for real submissions.

If running on your own server, visiting self-host n8n may help set up the system smoothly.


Customizations

  • Add More Form Fields: Add fields on Webflow, then update Code node to include those extra items. Adjust Google Sheets columns too.
  • Send Confirmation Emails: Add a Gmail node after Google Sheets to email the customer their submission copy.
  • Filter Submissions: Add an If node to check data before appending, for example making sure emails look valid.
  • Change Timestamp Format: Edit the Code node’s date code to format dates in easier-to-read forms using JavaScript.

Troubleshooting

  • Webhook Not Triggering: Check if Webflow Legacy API is off and that webhook URL is set correctly inside Webflow form or automation.
  • Google Sheets Append Fails: Confirm Google Sheets OAuth credentials are valid and the sheet is shared with the Google user connected in n8n.

Pre-Production Checklist

  • Make sure Webflow Legacy API is disabled.
  • Test submitting Webflow form triggers workflow in n8n.
  • Verify Code node extracts data fields and adds timestamp properly.
  • Ensure Google Sheets node maps columns to the right fields.
  • Perform a couple of test form entries to confirm data accuracy is consistent.

Deployment Guide

Turn the workflow status to Active to start auto-processing new submissions.
Watch the Google Sheets for data updates and check logs if needed.
If using self-host n8n, keep server available and monitor execution logs to catch errors early.


Summary

✓ The workflow saves users hours by copying Webflow form data automatically.
✓ It reduces mistakes from manual typing.
✓ Data always adds a timestamp so tracking is clear.
✓ Google Sheets fills out with new rows for every submission.
→ Users can focus more on replies and less on data entry.
→ The process runs fast and keeps records updated.


Frequently Asked Questions

Check if the Webflow Legacy API is disabled and confirm the webhook URL is correctly entered in Webflow form or automation settings.
Re-authenticate Google Sheets credentials in n8n and ensure the Google Sheet is shared with the Google user account linked to n8n.
Yes, replace the Google Sheets node with a tool like Airtable node and adjust field mappings to match the new tool.
Yes, OAuth2 authentication is used and data passes directly between services without being stored outside the workflow.

Promoted by BULDRR AI

Related Workflows

Automate Viral UGC Video Creation Using n8n + Degaus (Beginner-Friendly Guide)

Learn how to automate viral UGC video creation using n8n, AI prompts, and Degaus. This beginner-friendly guide shows how to import, configure, and run the workflow without technical complexity.
Form Trigger
Google Sheets
Gmail
+37
Free

AI SEO Blog Writer Automation Workflows in n8n

A complete beginner guide to building an AI SEO blog writer automation using n8n.
AI Agent
Google Sheets
httpRequest
+5
Free

Automate CrowdStrike Alerts with VirusTotal, Jira & Slack

This workflow automates processing of CrowdStrike detections by enriching threat data via VirusTotal, creating Jira tickets for incident tracking, and notifying teams on Slack for quick response. Save hours daily by transforming complex threat data into actionable alerts effortlessly.
scheduleTrigger
httpRequest
jira
+5
Free

Automate Telegram Invoices to Notion with AI Summaries & Reports

Save hours on financial tracking by automating invoice extraction from Telegram photos to Notion using Google Gemini AI. This workflow extracts data, records transactions, and generates detailed spending reports with charts sent on schedule via Telegram.
lmChatGoogleGemini
telegramTrigger
notion
+9
Free

Automate Email Replies with n8n and AI-Powered Summarization

Save hours managing your inbox with this n8n workflow that uses IMAP email triggers, AI summarization, and vector search to draft concise replies requiring minimal review. Automate business email processing efficiently with AI guidance and Gmail integration.
emailReadImap
vectorStoreQdrant
emailSend
+12
Free

Automate Email Campaigns Using n8n with Gmail & Google Sheets

This n8n workflow automates personalized email outreach campaigns by integrating Gmail and Google Sheets, saving hours of manual follow-up work and reducing errors in email sequences. It ensures timely follow-ups based on previous email interactions, optimizing communication efficiency.
googleSheets
gmail
code
+5
Free