Hello,

Looking at your code snippet, it appears that you're adding a 
CampaignCriterion rather than a NegativeCampaignCriterion 
<https://developers.google.com/adwords/api/docs/reference/v201409/CampaignCriterionService.NegativeCampaignCriterion>.
 
Keyword criteria are not supported at the campaign level except in 
NegativeCampaignCriterion. Try making a NegativeCampaignCriterion instead 
and see if that helps resolve the issue.

Regards,
Mike, AdWords API Team

On Tuesday, October 14, 2014 10:34:45 AM UTC-4, Jonathan wrote:
>
> Hey everybody
>
> When trying to add negative keywords to campaign i get this error:
>
> =======
>     <errors xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
> xsi:type="CriterionError">
>                         
> <fieldPath>operations[0].operand.criterion</fieldPath>
>                         <trigger/>
>                         
> <errorString>CriterionError.CANNOT_ADD_CRITERIA_TYPE</errorString>
>                         <ApiError.Type>CriterionError</ApiError.Type>
>                         <reason>CANNOT_ADD_CRITERIA_TYPE</reason>
>                     </errors>
> =======
>
> It used to work fine.
> This is how i add it: in java,
>
>             Keyword keyword = new Keyword();
>             keyword.setText("some text");
>             keyword.setMatchType(KeywordMatchType.PHRASE);
>
>             //add the criterion as operation
>             CampaignCriterionOperation operation = new 
> CampaignCriterionOperation();
>             CampaignCriterion campaignCriterion = new CampaignCriterion();
>             campaignCriterion.setCampaignId("some campaign id");
>             campaignCriterion.setCriterion(keyword);
>             
>             operation.setOperand(campaignCriterion);
>             operation.setOperator(Operator.ADD);
>            
> and then using the campaignCriterionService.mutate
>
> i dont understand why it isnt letting this operation go thru, how come 
> CANNOT_ADD_CRITERIA_TYPE is the error? 
> as i mentiond - this used to work for me before...
>
> Thanks alot for any help!
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0b3bf27d-99f9-493b-82e7-cf6450fa8ed0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to