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
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
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
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
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'); } }