Hi All,

I try to overwrite (change) bidding strategy for particular keyword.
Previously, the keyword's bidding strategy is inherit from campaign's 
(Auto). But now, for some reason I want to change it only for particular 
keyword.

This is screenshot how this process is accomplished via adwords web:

<https://lh3.googleusercontent.com/-bhgX5J5mZEc/VicWQE153DI/AAAAAAAACUQ/J9S2z1yzwK0/s1600/Screen%2BShot%2B2015-10-21%2Bat%2B11.35.29%2BAM.png>


And this is what i've try using python lib:

ad_group_criterion_service = client.GetService(
>
>     'AdGroupCriterionService', version='v201509')
>
>
> # Construct operations and update bids.
>
>
> operations = [{
>
>     'operator': 'SET',
>
>     'operand': {
>
>         'xsi_type': 'BiddableAdGroupCriterion',
>
>         'adGroupId': ad_group_id,
>
>         'criterion': {
>
>             'id': criterion_id,
>
>         },
>
>         'biddingStrategyConfiguration': {
>
>             'biddingStrategyType': 'MANUAL_CPC',
>
>             'bids': [
>
>                 {
>
>                     'xsi_type': 'CpcBid',
>
>                     'bid': {
>
>                         'microAmount': '26000000000'
>
>                     }
>
>                 }
>
>             ]
>
>         }
>
>     }
>
> }]
>
> ad_group_criteria = ad_group_criterion_service.mutate(operations)
>

But i've receive an error: Server raised fault: 

> '[BiddingErrors.CAMPAIGN_BIDDING_STRATEGY_CANNOT_BE_OVERRIDDEN @ 
> operations[0].operand.biddingStrategyConfiguration.biddingStrategyType; 
> trigger:'MANUAL_CPC']'


Please help me, how we can done the process via API?


Best Regards,
 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a5c618c2-4303-4865-b104-af7674615c2b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to