AdsApp.AccountShoppingCampaignTargeting
Stay organized with collections
Save and categorize content based on your preferences.
Provides access to shopping campaign-level targeting criteria (currently just
audiences).
For instance, to select all audiences targeted by shopping campaigns you
might use:
var shoppingAudienceSelector = AdsApp.shoppingCampaignTargeting()
.audiences()
.withCondition("metrics.impressions > 100")
.forDateRange("LAST_MONTH")
.orderBy("metrics.clicks DESC");
var shoppingAudienceIterator = shoppingAudienceSelector.get();
while (shoppingAudienceIterator.hasNext()) {
var shoppingAudience = shoppingAudienceIterator.next();
}
Methods:
audiences()
Specializes this selector to return
ShoppingCampaignAudience
criteria.
Return values:
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-09-03 UTC.
[null,null,["Last updated 2025-09-03 UTC."],[],[],null,[]]