Hi there!
I can't update the MatchType for my Keywords.
For example, i try to update one ExactMatch Keyword to PhraseMatch and
also the KeywordCPC.
I get no errors while uploading and also the CPC has changed
correctly, just the MatchType in the AdGroupCriterionReturnValue
is still EXACT.
My code looks similiar to this:
com.google.api.adwords.v200909.cm.Keyword lGoogleKeyword = new
com.google.api.adwords.v200909.cm.Keyword();
lGoogleKeyword.setId(12345);
lGoogleKeyword.setMatchType(KeywordMatchType.BROAD);
BiddableAdGroupCriterion lBiddableAdGroupCriterion = new
BiddableAdGroupCriterion();
lBiddableAdGroupCriterion.setAdGroupId(12345);
lBiddableAdGroupCriterion.setCriterion(lGoogleKeyword);
AdGroupCriterionOperation lOperation = new
AdGroupCriterionOperation();
lOperation.setOperand(lBiddableAdGroupCriterion);
lOperation.setOperator(Operator.SET);
lService.mutate(new AdGroupCriterionOperation[] {lOperation});
Hope you guys can help me to fix that problem.
Regards,
Daniel
--
You received this message because you are subscribed to the Google Groups
"AdWords API Forum" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en.