Hello,
You can refer to this example which updates a keyword's bid in PHP.
Cheers,
Anthony
Google Ads API Team
Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q27u6Mf:ref
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
Hi How can I update the keyword MaxCPC in php via google ads api?
I am using following code, but nothing was changed after trying.
if (!is_null($cpcAmount)) {
$bid = new \Google\AdsApi\AdWords\v201809\cm\CpcBid();
$money = new \Google\AdsApi\AdWords\v201809\cm\Money
Hi,
Take a look at this example
https://code.google.com/p/google-api-ads-java/source/browse/examples/adwords_axis/src/main/java/adwords/axis/v201302/basicoperations/UpdateKeyword.java
Best,
- David Torres - AdWords API Team
On Thursday, April 4, 2013 6:07:13 AM UTC-4, Aere wrote:
>
> I don't u
I don't understand your code... where you instantiate
"keywordBiddableAdGroupCriterion"?
Il giorno domenica 31 marzo 2013 21:06:20 UTC+2, Oliver ha scritto:
>
> I just tried the following code for a keyword and it seems to be working:
>
>
> BiddingStrategyConfiguration biddingStrategyConfiguratio
I just tried the following code for a keyword and it seems to be working:
BiddingStrategyConfiguration biddingStrategyConfiguration = new
BiddingStrategyConfiguration();
CpcBid bid = new CpcBid();
bid.setBid(bidAmount);
biddingStrategyConfiguration.setBids(new Bids[] {bid});
keywordBiddableAdGro
There is nothing similar to setBiddingStrategyConfiguration for the keyword
(com.google.api.ads.adwords.axis.v201302.cm)
Anybody has an idea?
Am Mittwoch, 27. März 2013 09:35:52 UTC+1 schrieb F.Per:
>
> Hi
>
> im using java (v201302) and i want to update a list of already EXISTING
> keywords.
See the example code in the bidding guide:
https://developers.google.com/adwords/api/docs/guides/bidding
it sets the bid on the adgroup, but the code to do the same on keywords
should be similar.
Oliver
On Wednesday, March 27, 2013 8:35:52 AM UTC, F.Per wrote:
>
> Hi
>
> im using java (v201
Hi
im using java (v201302) and i want to update a list of already EXISTING
keywords. I downloaded all the information i need about them and i want to
update their maxCpc.
Ive written the following code, but there is no obvious way for me to set
the maxCpc attribute:
[code]
// create client l