Hello,

I am trying to do something extremely simple: change keyword bids. I think 
my code is correct but I'm probably wrong. I've searched the documentation 
for over four hours and can't find anything to help me. Unfortunately all 
other languages have examples of changing bids, the PHP example 
<https://developers.google.com/adwords/api/docs/samples/php/basic-operations#update-a-keyword>
 
focuses on changing keyword final URLs. All of the other examples in the 
forum are using outdated versions of the PHP library. Anyway, the code:

$adGroupCriterion = new BiddableAdGroupCriterion();
$adGroupCriterion->setAdGroupId($adGroupId);
$adGroupCriterion->setCriterion(new Criterion([KEYWORD_ID]));
$biddingStrategyConfiguration = new BiddingStrategyConfiguration();

$money = new Money;
$money->setMicroAmount(500000);
$bid = new CpcBid;
$bid->setBid($money);
$biddingStrategyConfiguration->setBids(new Bid([$bid]));

$operation = new AdGroupCriterionOperation();
$operation->setOperand($adGroupCriterion);
$operation->setOperator(Operator::SET);
$operations[] = $operation;
$result = $adGroupCriterionService->mutate($operations);
$adGroupCriterion = $result->getValue()[0];

Now the problem is that $biddingStrategyConfiguration->setBids(new 
Bid([$bid])); always returns an error because it requires an array but 
$bid->setBid($money); returns an object thus causing error. Am I doing 
something wrong here? Please 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a5d48285-2264-475b-bfca-0e4a508f7f3b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
  • Unable to change... Josh Averbeck
    • Re: Unable ... 'Vincent Racaza (AdWords API Team)' via AdWords API Forum

Reply via email to