Disapproved Ad Checker
Exports disapproved ads with campaign and ad group context so you can review policy issues quickly without hunting through the interface.
Script Code
Use this as a quick policy review script when you want a simple disapproved-ad list in a sheet.
Preview is public. Unlock full code with name and email.
/**
* ==========================================================
* Disapproved Ad Checker
* ==========================================================
* Description: Exports enabled ads that are not approved.
*
* Copyright (c) 2026 TwoSquares. All Rights Reserved.
* Developed by Kiril Ivanov
*/
function main() {
var SPREADSHEET_URL = "";
var SHEET_NAME = "Disapproved Ads";
// ... preview shortened
}About This Script
Disapproved Ad Checker is a straightforward script for surfacing ads that are not currently approved. It is designed for teams that need a quick policy review without navigating through multiple interface filters.
The script exports campaign name, ad group name, ad type, approval status, and ad ID into a Google Sheet. That gives you a clean working list for triage, fixes, and escalation.
This is intentionally a lightweight monitoring script rather than a full policy audit. It is useful for recurring checks after ad launches, bulk uploads, or creative refreshes.
Implementation Notes
- Leave SPREADSHEET_URL blank to auto-create a report sheet, or paste your own URL.
- Run the script manually once and confirm the output fields are enough for your review process.
- Use the exported ad IDs and campaign context to investigate issues in the Google Ads UI.
- Schedule it daily or weekly if policy issues tend to appear after launches.
- If needed, extend it later with policy topic details or email alerts.
More Scripts In This Library
Delete Disapproved Ads
Finds ads with non-approved policy status and removes them, with a dry-run mode enabled by default for safer review first.
Disapproved Ad Alert
Monitors enabled ads for policy issues and can email a daily alert with disapproved/limited ads before delivery is impacted.
Enabled Ad Count By Ad Group
Counts enabled ads per ad group and exports the result into a Google Sheet so thin ad groups are easy to spot.
Account Anomaly Detector
Compares today’s account performance against the same weekday across previous weeks and alerts when impressions, clicks, conversions, or cost move outside expected bounds.
Disapproved Ad Checker FAQs
Common setup, usage, and troubleshooting questions for this script.