Is there any possible way to add a negative list to shopping campaigns through adwords script ?

36 views
Skip to first unread message

BHaridas

unread,
Sep 7, 2016, 10:12:57 AM9/7/16
to AdWords Scripts Forum
Hi,

Is there any possible way to add a negative list to shopping campaigns  through adwords script ?

Tyler Sidell (AdWords Scripts Team)

unread,
Sep 7, 2016, 11:25:20 AM9/7/16
to AdWords Scripts Forum
Hi,

Currently, adding a Negative Keyword List to a Shopping Campaign is not supported in AdWords Scripts. You could add a Negative Keyword to a Shopping Campaign instead.

function main() {
 
var shoppingCampaignSelector = AdWordsApp.shoppingCampaigns().get();
 
 
while (shoppingCampaignSelector.hasNext()) {
   
var sc = shoppingCampaignSelector.next();
    sc
.createNegativeKeyword('text');
 
}
}

Thanks,
Tyler Sidell
AdWords Scripts Team
Reply all
Reply to author
Forward
0 new messages