Requex.me LogoRequex.me

Documentation

Browse by section

Keep all guides, tool docs, automation recipes, and comparison pages in one navigable place.

Docs Home
Docs

Foundation docs for getting started fast, understanding key terms, and tracking what has changed.

Guides

Start with fundamentals, then move into provider-specific webhook testing and production hardening.

Tool Docs

These pages explain what each tool does, when to use it, and how it fits into a webhook debugging workflow.

Automation Docs

Use these setup guides when you want forwarding rules, custom responses, security checks, or multi-destination fanout.

Compare

Use these pages to compare developer workflows, pricing tradeoffs, and feature differences between webhook tools.

Quick answer: Add a Google Sheets node to any Requex.me workflow. Authenticate with a Service Account JSON, pick your spreadsheet, and choose Read, Append, Update, or Clear. No code required.

Google Sheets Automation in Workflows

The Google Sheets node lets you read rows as structured JSON, append new rows, update existing rows by filter or row number, and clear ranges — all triggered by webhooks or schedules.

Last updated: April 2026 · 6 min read

Getting Started

Authentication uses a Google Service Account — a server identity that can access your sheet without a user login flow. Here is how to set it up:

  1. Open Google Cloud ConsoleAPIs & ServicesLibrary. Search for Google Sheets API and click Enable. This must be done once per project — the API is disabled by default.
  2. Go to IAM & AdminService Accounts.
  3. Click Create Service Account. Give it a name (e.g., requex-sheets).
  4. On the service account page, go to Keys → Add Key → Create new key → JSON. Download the file.
  5. Open your Google Sheet. Click Share and add the service account email (found in the JSON as client_email) as an Editor.
  6. In the Google Sheets node config, paste the entire contents of the downloaded JSON file into the Service Account JSON field.
Common mistake: If you see a 403 Google Sheets API has not been used error, you skipped step 1 — go back and enable the API for your project.

Operations

Read Rows

Reads all rows in the specified range. The first row is treated as column headers. Each subsequent row becomes a JSON object.

// Output added to payload:
{
  "rows": [
    { "Name": "Alice", "Email": "alice@example.com", "Status": "Active" },
    { "Name": "Bob",   "Email": "bob@example.com",   "Status": "Pending" }
  ]
}

Access rows downstream with {{rows}}. Use a Transform node to reshape or a Branch node to route based on row values.

Append Row

Appends a new row to the sheet. Configure a JSON template where keys match your column headers and values use {{payload.path}} syntax.

// Row Template example:
{
  "Name":  "{{body.name}}",
  "Email": "{{body.email}}",
  "Date":  "{{body.timestamp}}"
}

Update Row

Updates an existing row. Choose between two targeting modes:

  • Row Number — specify the exact row (supports {{template}} vars)
  • Filter Match — find the first row where column X equals value Y (rendered from payload)
// Update Template (only listed columns change):
{
  "Status":    "{{body.newStatus}}",
  "UpdatedAt": "{{body.timestamp}}"
}

Clear Range

Clears all values in the configured range. The sheet structure (column headers, formatting) is preserved but all cell values are removed. The workflow payload passes through unchanged.

Warning: Clear cannot be undone. Use it carefully in production workflows.

Template Variables

All template fields support {{dot.path}} syntax to inject values from the workflow payload.

VariableDescription
{{body.field}}Value from incoming webhook body
{{query.param}}URL query parameter from webhook trigger
{{rows[0].Name}}First row from a preceding Read node

FAQ

I get a 403 “API has not been used” error — what do I do?

The Google Sheets API is disabled by default on new Cloud projects. Go to Google Cloud Console → APIs & Services → Library, search for Google Sheets API, and click Enable. The error disappears immediately once the API is active.

Why a Service Account instead of OAuth?

Service Accounts are headless server identities — no browser login required, no token expiry to manage. They are the standard approach for server-to-server Google API access in automation tools. OAuth2 support is planned for a future release.

How do I find my Spreadsheet ID?

Open your Google Sheet. The URL looks like: docs.google.com/spreadsheets/d/1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgVE2upms/edit. The bold part is your Spreadsheet ID.

What range format should I use?

Use A:Z to cover all columns dynamically, or A1:F500 for a bounded range. The sheet name is configured separately — do not include it in the range field.

The service account can't access my sheet — what's wrong?

The most common cause: you forgot to share the spreadsheet with the service account email. Open the sheet, click Share, and add the client_email from your service account JSON as an Editor.

Related Resources