Re: How do i add USER_INTEREST in campaign level

2019-10-30 Thread Arnab Ganguly
I was able to add UserInterest under campaign.Below I have given the log for reference and python code snippet.Correct my if I am wrong. campaign_criterion_service = adwords_client.GetService( 'CampaignCriterionService', version='v201809') criteria = [{'id': '1000', 'xsi_type': 'Language

Re: How do i add USER_INTEREST in campaign level

2019-10-29 Thread Google Ads API Forum Advisor Prod
Hi Arnab, That is correct. User Interests can only be added at the ad group level. From the campaign level, it is only available as a negative criteria. Here is a snippet you can use to add negative criteria: negative_campaign_criterion_operand = { 'xsi_type': 'NegativeCampaignCriterion', 'cam

Re: How do i add USER_INTEREST in campaign level

2019-10-29 Thread Arnab Ganguly
Following url: https://groups.google.com/forum/#!searchin/adwords-api/audience$20in-market%7Csort:date/adwords-api/k6NcD2GrTVQ/EJ59JeKdBwAJ UserInterest is added as part of the criteria in adgroup level And this link https://developers.google.com/adwords/api/docs/appendix/targetingtypes#target_ty

Re: How do i add USER_INTEREST in campaign level

2019-10-25 Thread Google Ads API Forum Advisor Prod
Hi Arnab, You can follow our developer blog for information regarding future releases. For your other concern, can you please provide the complete SOAP logs for your request so that we can investigate further? See here for more details on how to enable logging. Regards, Anthony Google Ads API

Re: How do i add USER_INTEREST in campaign level

2019-10-25 Thread Arnab Ganguly
I am trying with below request.But it is giving internal error. # Add the negative campaign criterion. negative_campaign_criterion_operand = { 'xsi_type': 'NegativeCampaignCriterion', 'campaignId': CAMPAIGN_ID, 'criterion': { 'xsi_type': 'CriterionUserInteres

Re: How do i add USER_INTEREST in campaign level

2019-10-25 Thread Arnab Ganguly
Hey Anthony, Thanks for your reply.Do we plan to support this for positive campaign as well ? Regards, Arnab On Fri, Oct 25, 2019 at 2:37 PM Google Ads API Forum Advisor Prod < adsapiforumadvi...@gmail.com> wrote: > Hi Arnab, > > Thank you for reaching out. As seen here >

RE: How do i add USER_INTEREST in campaign level

2019-10-25 Thread Google Ads API Forum Advisor Prod
Hi Arnab, Thank you for reaching out. As seen here, user interest criteria are only supported for negative criterion at the campaign level. You would do this through the CampaignCriterionService. Here is an example for adding supported criterion types to a campaign (or here if you're using Goog