Skip to main content

Daily Google Ads performance to Notion and Google Sheets

Workflow preview

Workflow preview
100%
Daily Google Ads performance to Notion and Google Sheets preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

Description This workflow automates the daily reporting of Google Ads campaign performance. It pulls click and conversion data from the Google Ads API, merges both datasets, and stores the results ...

Best for

  • Market Research automation workflows
  • Multimodal AI automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.stickynote, n8n-nodes-base.httprequest, n8n-nodes-base.notion, n8n-nodes-base.googlesheets, n8n-nodes-base.code, n8n-nodes-base.merge, n8n-nodes-base.scheduletrigger, n8n-nodes-base.set

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Aziz dev.

Original n8n.io source

1.1 Workflow description

Title
Daily Google Ads performance to Notion and Google Sheets
Workflow name
Daily Google Ads performance to Notion and Google Sheets

Description

This workflow automates the daily reporting of Google Ads campaign performance. It pulls click and conversion data from the Google Ads API, merges both datasets, and stores the results into Notion databases and Google Sheets.

It includes a campaign-level log and a daily performance summary. The workflow is triggered automatically every day at 08:00 AM, helping marketing teams maintain a consistent and centralized reporting system without manual effort.


How It Works

  1. Scheduled Trigger at 08:00 AM
    The workflow begins with a Schedule Trigger node that runs once per day at 08:00.

  2. Set Yesterday’s Date
    The Set node defines a variable for the target date (yesterday), which is used in the API queries.

  3. Query Google Ads API – Clicks & Cost
    The first HTTP request pulls campaign-level metrics:

    • campaign.id, campaign.name
    • metrics.clicks, metrics.impressions, metrics.cost_micros
  4. Query Google Ads API – Conversions
    The second HTTP request pulls conversion-related data:

    • metrics.conversions, segments.conversion_action_name
  5. Split and Merge
    Both responses are split into individual campaign rows and merged using:

    • campaign.id
    • segments.date
  6. Store Campaign-Level Data

    • Stored in Notion database: "Google Ads Campaign Tracker"
    • Appended to Google Sheets tab: "Campaign Daily Report"
  7. Generate Daily Summary
    A code node calculates daily totals across all campaigns:

    • Total impressions, clicks, conversions, cost
    • Unique conversion types
      The summary is stored in:
    • Notion database: "Google Ads Daily Summary"
    • Google Sheets tab: "Summary Report"

Setup Steps

1. Schedule the Workflow

  • The workflow is triggered using a Schedule Trigger node
  • Set the schedule to run every day at 08:00 AM
  • Connect it to the Set Yesterday Date node

2. Google Ads API Access

  • Create a Google Ads developer account and obtain a developer token
  • Set up OAuth2 credentials with Google Ads scope
  • In n8n, configure the Google Ads OAuth2 API credential
  • Ensure HTTP request headers include:
    • developer-token
    • login-customer-id
    • Content-Type: application/json

3. Notion Database Setup

Create two databases in Notion:

  • Google Ads Campaign Tracker
    • Fields: Campaign Name, Campaign ID, Impressions, Clicks, Cost, Conversion Type, Conversions, Date
  • Google Ads Daily Summary
    • Fields: Date, Total Impressions, Total Clicks, Total Conversions, Total Cost, Conversion Types
  • Share both databases with your Notion integration

4. Google Sheets Setup

  • Create a spreadsheet with two tabs:
    • Campaign Daily Report → for campaign-level rows
    • Summary Report → for daily aggregated metrics
  • Match all column headers to the workflow fields
  • Connect your Google account to n8n using Google Sheets OAuth2

Output Summary

Notion Databases:

  • Google Ads Campaign Tracker: stores individual campaign metrics
  • Google Ads Daily Summary: stores daily totals and conversion types

Google Sheets Tabs:

  • Campaign Daily Report: per-campaign data
  • Summary Report: aggregated daily performance

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Sticky Note12

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 2 - Sticky Note11

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 3 - G-Ads Query Click

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 4 - G-Ads Query Conversion

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 5 - Notion1

Type / Role
n8n-nodes-base.notion - notion
Config choices
Version 2.2

Block 6 - Notion2

Type / Role
n8n-nodes-base.notion - notion
Config choices
Version 2.2

Block 7 - Google Sheets10

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.5

Block 8 - Split Click2

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 9 - Split Conversion2

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 10 - Merge2

Type / Role
n8n-nodes-base.merge - merge
Config choices
Version 3.1

Block 11 - Daily Recap2

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 12 - Google Sheets11

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.5

Block 13 - Sticky Note10

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 14 - Sticky Note9

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 15 - Sticky Note8

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 16 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 17 - Schedule Trigger

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1.2

Block 18 - Set Yesterday Date2

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 19 - Sticky Note7

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Daily Google Ads performance to Notion and Google Sheets
Complexity advanced
Nodes 19
Categories Market Research, Multimodal AI
Author Aziz dev
Published 07 Aug 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/7133/7133.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Daily Google Ads performance to Notion and Google Sheets do?

Description This workflow automates the daily reporting of Google Ads campaign performance. It pulls click and conversion data from the Google Ads API, merges both datasets, and stores the results ...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Market Research, Multimodal AI use case.