How to exclude mobile apps from GDN Campaigns?

68 views
Skip to first unread message

Alberto Esteves Correia

unread,
Nov 28, 2018, 12:41:27 PM11/28/18
to AdWords Scripts Forum
Hello,

I'm looking for a way to exclude mobille apps from Display campaign. Although I've found this thread asking for the same, there is no public answer yet


Example: I want to exclude placements with a higher Ctr than 10% at adGroup level (at all adGroups of Display campaigns). 

function main() {
  var adGroupsIterator = AdWordsApp.adGroups()
                                   .withCondition("AdGroupStatus IN [ENABLED, PAUSED]")
                                   .withCondition("CampaignStatus IN [ENABLED, PAUSED]")
                                   .withCondition("AdGroupType IN ['DISPLAY_STANDARD','DISPLAY_ENGAGEMENT']")
                                   .get();
  
  while (adGroupsIterator.hasNext()) {
    var placementsIterator = AdWordsApp.display().placements()
   .withCondition("Ctr > 0.1")
   .get();    
    var adGroup = adGroupsIterator.next();
    
    while (placementsIterator.hasNext()){
      var placement = placementsIterator.next();
      placement.remove();
    }
  }
}



With this script, I exclude the Web placements, but no mobile apps ones. 

How Can I include mobile apps placements?

Thanks!



Message has been deleted

Sravani Yelamarthi (AdWords Scripts Team)

unread,
Nov 28, 2018, 4:46:17 PM11/28/18
to AdWords Scripts Forum
Hi Alberto,

I've checked for any relevant updates but it appears support for mobile app exclusion still has not been added. This sort of update will be posted on our blog.

Thanks,
Sravani Yelamarthi
AdWords Scripts Team

Claudia Kosny

unread,
Jan 3, 2019, 3:40:09 AM1/3/19
to Google Ads Scripts Forum
Hello Sravani,

I also need a way to exclude mobile apps via Ad scripts. Do you have any idea if and when this might be added? I know that you cannot provide a precise date, but it would be nice to know whether this is already on the to-do list or not planned at all.

Thanks

Claudia

Sravani Yelamarthi (AdWords Scripts Team)

unread,
Jan 3, 2019, 11:52:36 AM1/3/19
to Google Ads Scripts Forum
Hello Claudia,

At the moment, I do not have any information on potential mobile app exclusion changes on the horizon, but we will post about it as soon as possible, if and when those changes are made.


Thanks,
Sravani Yelamarthi
AdWords Scripts Team

On Wednesday, November 28, 2018 at 12:41:27 PM UTC-5, Alberto Esteves Correia wrote:
Reply all
Reply to author
Forward
0 new messages