Anuncios rechazados

33 views
Skip to first unread message

Nerea Bilbao

unread,
Oct 27, 2025, 7:46:03 PMOct 27
to Google Ads Scripts Forum
Necesito un script para que cualquier cuenta del MCC XX-XXX-XX cuando se rechace un anuncio me envíe un correo a x...@gmail.com 

Google Ads Scripts Forum Advisor

unread,
Oct 28, 2025, 1:35:43 AMOct 28
to adwords...@googlegroups.com
Hi,
 
Thank you for reaching out to the Google Ads Scripts support team.
 
I would like to inform you that this product officially offers support only in English. It would be best to reply in English if you can. If not, we will try to use Google Translate to support you as best as we can.
 
I would recommend you refer to the below sample code to retrieve the disapproved ads in your account using the Google Ads Scripts:
function main() {
	var adSelector = AdsApp.ads().withCondition('campaign.status = ENABLED')
    .withCondition('ad_group.status = ENABLED')
    .withCondition('ad_group_ad.status = ENABLED')
    .withCondition('ad_group_ad.policy_summary.approval_status = DISAPPROVED')
	var adIterator = adSelector.get();
	while (adIterator.hasNext()) {
		var ad = adIterator.next();
		Logger.log(ad);
	}
}
Once you have retrieved the disapproved ads, you may now use the guide MailApp to get more information on how to send a sample email using scripts.
 
If this is not what you are looking for, I request you kindly share more details of your issue so that we can assist you better.
 

Thanks,
 
Google Logo Google Ads Scripts Team

Feedback
How was our support today?

rating1    rating2    rating3    rating4    rating5
[2025-10-28 05:35:13Z GMT] This message is in relation to case "ref:!00D1U01174p.!500Ht01vRxhb:ref" (ADR-00336709)



Nerea Bilbao

unread,
Oct 28, 2025, 3:49:41 AMOct 28
to Google Ads Scripts Forum
Good morning,
The idea is that you send me an email when currently active advertisements are rejected. Not to notify me of rejected advertisements, because if you do that, you will also be notifying me of those that are not active.
Thank you very much!

Google Ads Scripts Forum Advisor

unread,
Oct 28, 2025, 8:46:52 AMOct 28
to adwords...@googlegroups.com
Hi,

Please be informed that it is not possible for the scripts team to send you an email notification when the active advertisements are rejected. I would like to clarify that Google Ads scripts team does not provide hands-on support for any requests related to the implementation of scripts based on the use case, and we do not support creating scripts on behalf of a user. Instead, we can only provide guidance on how users can troubleshoot specific issues within their scripts. So, kindly follow the earlier given suggestions and get back to us if you face any issues.

 

Thanks,
 
Google Logo Google Ads Scripts Team

Feedback
How was our support today?

rating1    rating2    rating3    rating4    rating5

[2025-10-28 12:46:12Z GMT] This message is in relation to case "ref:!00D1U01174p.!500Ht01vRxhb:ref" (ADR-00336709)



Reply all
Reply to author
Forward
0 new messages