I built this workflow to remove the daily pain of Meta Ads reporting. If you manage multiple ad accounts, you know how time-consuming it is to open Ads Manager, export campaign data, clean spreadsheets, and send updates to clients.
This automation pulls campaign performance directly from the Meta Ads API, writes structured data into Google Sheets (per client), generates a performance summary, and sends a Telegram alert when the report is updated.
It transforms manual reporting into a fully automated monitoring system.
Schedule Trigger starts the workflow on a defined schedule.
Google Sheets (Get rows) loads your client register (one row per client).
Use this template structure for the client register:
👉 Client Register Template
The register should include:
ad_account_idaccess_tokenreport_sheet_urlLoop Over Items processes each client individually.
Code (ctx) prepares the current client context (account ID, token, report sheet URL).
HTTP Request calls the Meta Ads Insights endpoint and retrieves campaign-level metrics.
IF checks the response (skip if no data).
Merge combines client context + API response.
Code (Split campaigns) converts the campaigns array into individual items (one per campaign) and formats metrics for reporting.
Code (Extract spreadsheetId) extracts the spreadsheet ID from the report URL.
Google Sheets (Append row) writes each campaign row into the client’s report sheet.
Example report structure:
👉 Campaign Report Template
Code (Summary & Status Logic) aggregates totals and applies campaign diagnostics.
Telegram sends a structured performance summary including:
After writing campaign rows to Google Sheets, the workflow generates a performance overview using a JavaScript node.
The workflow then:
This provides both structured spreadsheet reporting and a quick executive snapshot.
Each campaign is automatically evaluated based on CTR and CPC thresholds.
Weak Creative (❌)
If CTR < 1.5%
→ Indicates low engagement. The ad creative may need improvement.
Expensive Click (⚠)
If CPC > 0.5
→ Indicates high cost per click. Audience targeting or bidding strategy may need optimization.
Good Candidate to Scale (🔥)
If CTR ≥ 2% AND CPC ≤ 0.5
→ Strong performance. The campaign may be suitable for scaling.
OK (✅)
If none of the above conditions are met
→ Campaign performance is within an acceptable range.
The status appears directly in the Telegram notification, allowing marketers to quickly identify which campaigns need attention without logging into Ads Manager.
Estimated setup time: 10–20 minutes.
ad_account_idaccess_tokenreport_sheet_url