Re: Python GoogleAdsClient update multiple keyword bids simultaneously

2022-02-15 Thread Laurie McIntosh
Perfect. Didn't realise it took a list as an operator. Many thanks for your help. On Wednesday, February 16, 2022 at 6:05:20 AM UTC+13 adsapi wrote: > Hi Laurie, > > 'keyword_view' gives you all the keywords that are at ad group level, you > can use the adGroupCriterionService >

Re: Python GoogleAdsClient update multiple keyword bids simultaneously

2022-02-15 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Laurie, 'keyword_view' gives you all the keywords that are at ad group level, you can use the adGroupCriterionService and change the bid_modifier field and you can change up to 10,000 criterion per request. A sample that modifies 1 keyword is update_keyword.py, but operations can have multip

Re: Python GoogleAdsClient update multiple keyword bids simultaneously

2022-02-14 Thread Laurie McIntosh
Well... using https://github.com/googleads/google-ads-python/blob/2a1d6062221f6aad1992a6bcca0e7e4a93d2db86/examples/campaign_management/add_complete_campaigns_using_batch_job.py as a starting point, I can query like: query = """ SELECT campaign.id, ad_group.id, ad_group_criterion.keyword.text,

Re: Python GoogleAdsClient update multiple keyword bids simultaneously

2022-02-13 Thread Laurie McIntosh
>> You can use these reports to just change just the keyword bids that fit for your use case. Awesome. How? I see how to run the report to get the values. How do I push the updated values back up? On Saturday, February 12, 2022 at 3:18:17 AM UTC+13 adsapi wrote: > Hi Laurie, >

RE: Python GoogleAdsClient update multiple keyword bids simultaneously

2022-02-11 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
bidding strategy no matter what the bidding strategy type is. The ad_group report can show which campaign an ad group belongs to.You can use these reports to just change just the keyword bids that fit for your use case. Feel free to get back to us. Regards, Aryeh Google Ads API Team ref

Python GoogleAdsClient update multiple keyword bids simultaneously

2022-02-10 Thread Laurie McIntosh
Hi all, I have several adgroups for which I need to daily update the max cpc at the keyword level. I'd like to know how to do this efficiently. Currently I'm updating at the adgroup level, but some of these campaigns are setup to have the keyword bid override the adgroup maxcpc value. So I

Re: GoogleAdsAPI: How to change individual keyword bids back to the ad group default bid?

2019-10-01 Thread かねこ
I could change cpc bid to default. Many thanks for your helps! On Tuesday, October 1, 2019 at 11:22:46 PM UTC+9, adsapiforumadvisor wrote: > > Hello, > > Regret the delay. If you need to work with an existing object to update a > few fields, you will need to create the FieldMask from the scratc

RE: GoogleAdsAPI: How to change individual keyword bids back to the ad group default bid?

2019-10-01 Thread Google Ads API Forum Advisor Prod
Hello, Regret the delay. If you need to work with an existing object to update a few fields, you will need to create the FieldMask from the scratch as mentioned in this guide. You don’t need to use clearCpcBidMicros() to explicitly set the value to default. Please find the code snippet below fo

GoogleAdsAPI: How to change individual keyword bids back to the ad group default bid?

2019-09-29 Thread かねこ
I use Google Ads API Client Library for Java v2. I edited individual keyword bid. Long bidMicroAmount = Long.parseLong("100"); AdGroupCriterion adGroupCriterion = AdGroupCriterion.newBuilder() .setResourceName(ResourceNames.adGroupCriterion(customerId, adGroupId, criterionId))

Re: Unable to change keyword bids PHP v201710

2017-12-20 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Josh, Checking your code, I have observed that you missed some code lines, that's why, it generated an error on your end. You may refer to the changes that I made in your code below: $adGroupCriterion = new BiddableAdGroupCriterion(); $adGroupCriterion->setAdGroupId($adGroupId); $adGroupCrit

Unable to change keyword bids PHP v201710

2017-12-20 Thread Josh Averbeck
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,

Re: Change keyword bids bases on position in v201409

2014-11-27 Thread Filip Holmberg
Ok, thanks for the confirmation. On Thursday, 27 November 2014 15:30:04 UTC+2, Danial Klimkin wrote: > > Hello Filip, > > > This is exactly the approach. > > > -Danial, AdWords API Team. > > > On Thursday, November 27, 2014 4:28:19 PM UTC+3, Filip Holmberg wr

Re: Change keyword bids bases on position in v201409

2014-11-27 Thread Filip Holmberg
Okey, so I got keyword bids changed individually(executed as a grouped mutate of course) by setting a individual biddingStrategyConfiguration. Might this be the best way or am I missing something here? $keywordTest = [ ['keywordID' => '', &#x

Re: Change keyword bids bases on position in v201409

2014-11-27 Thread Danial Klimkin
Hello Filip, This is exactly the approach. -Danial, AdWords API Team. On Thursday, November 27, 2014 4:28:19 PM UTC+3, Filip Holmberg wrote: > > Okey, so I got keyword bids changed individually(executed as a grouped > mutate of course) by setting a individual biddingStrategyConf

Re: Change keyword bids bases on position in v201409

2014-11-27 Thread Filip Holmberg
Okey, so I got keyword bids changed individually(executed as a grouped mutate of course) by setting a individual biddingStrategyConfiguration. Might this be the best way or am I missing something here? $keywordTest = [ ['keywordID' => '11372600', &#x

Change keyword bids bases on position in v201409

2014-11-27 Thread Filip Holmberg
Is it possible to update keywords bids individually in v201409? I got it to work on AdGroup level but some post and docs mention that it is not possible on a keyword level. We would like to adjust bids based on their position. What's the best api approach to handle this. This is handled manual

Re: Can keyword bids be changed without changing status?

2014-03-03 Thread Ray Tsang (AdWords API Team)
Reed, On a SET operation, if you don't specify userStatus, it should remain the same (i.e., it won't be changed). I'll work on getting the documentation updated. Thanks, Ray On Tuesday, February 25, 2014 3:52:30 PM UTC-5, Reed wrote: > > I use the AdGroupCriterionServ

Can keyword bids be changed without changing status?

2014-02-25 Thread Reed
I use the AdGroupCriterionService to change keyword bids via a Mutate SET operation on BiddableAdGroupCriterion. This is an automated process that pushes bid changes from an internal queue to AdWords. Early each morning I reload tables (via the ReportingService) containing all the information

Re: Keyword bids to set if Google Ad Group Bid Optimizer is enabled

2012-12-11 Thread Alexander Nitschke
You are not saying which library you are using which could help with the answer. But regardless of the library, you shouldn't have a ManualCpcAdGroupCriterionBid object at all if budget or conversion optimizer is set for the campaign (not possible on ad group level as you seem to be implying).

Keyword bids to set if Google Ad Group Bid Optimizer is enabled

2012-12-10 Thread Chastine Guy-Uyco
We see this error whenever we push keywords to AdWords using the API: fieldPath = operations[22].operand.bids, trigger= MANUAL_CPC, errorString = AdGroupCriterionError.BID_INCOMPATIBLE_WITH_ADGROUP Conversion optimizer is enabled for the parent ad group and we're setting a ManualCpcAdGroupCriter

Re: DatabaseError.CONCURRENT_MODIFICATION on large keyword bids update query

2011-04-06 Thread Danial Klimkin
Hello Rohit, This issue was recently described in our blog: http://adwordsapi.blogspot.com/2011/03/concurrency-management-in-adwords-api.html The best practice would be to have a retry mechanism with limited number of retries in place. Best regards, Danial Klimkin, AdWords API Team. --

Re: DatabaseError.CONCURRENT_MODIFICATION on large keyword bids update query

2011-04-04 Thread mm
structure our code to avoid this error? Is the database lock released before the soap call returns? Can this be mitigated by batching the calls by adgroup? Thanks - mm On Apr 4, 10:43 am, Rohit Dantas wrote: > Hi i was updating ~4552 keyword bids today and received the following error, > even

DatabaseError.CONCURRENT_MODIFICATION on large keyword bids update query

2011-04-04 Thread Rohit Dantas
Hi i was updating ~4552 keyword bids today and received the following error, even though no-one else was using our account to modify keywords, nor was any other API process try to do the same. The next attempt to do the same worked without a problem. Do you know what could be the issue? Should

Re: keyword Bids

2010-07-15 Thread AdWords API Advisor
Hi, Yes, that AdGroupCriterionService can be used to get and update keyword bids: http://code.google.com/apis/adwords/v2009/docs/reference-v200909/AdGroupCriterionService.html Best, - Eric Koleda, AdWords API Team On Jul 13, 6:07 pm, axum wrote: > I have a campaign id and an AdGroup I

keyword Bids

2010-07-13 Thread axum
I have a campaign id and an AdGroup ID I want to use the API to change the bid on keywords in a adgroup. Is there a way to do that using the API? -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google

Re: AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2010-04-23 Thread HB
Hi Eric, with the new api v200909 everything works fine. Harald On Mar 26, 10:54 pm, AdWords API Advisor wrote: > Hi Harald, > > From what I can tell this bug has not yet been fixed in the v13 > version of the API.  Given the sunset of the v13 campaign management > services on April 22nd, I wou

Re: AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2010-03-26 Thread AdWords API Advisor
Hi Harald, >From what I can tell this bug has not yet been fixed in the v13 version of the API. Given the sunset of the v13 campaign management services on April 22nd, I would urge you to migrate your code to the v200909 version of the API which doesn't have this issue. Best, - Eric On Mar 25,

Re: AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2010-03-25 Thread HB
Hi Eric, the link: http://www.mail-archive.com/adwords-api@googlegroups.com/msg02065.html Thanks, Harald On Mar 23, 5:39 pm, AdWords API Advisor wrote: > Hi Harald, > > Can you link to the original thread so I can get more background > information on this problem?  Do you have the SOAP XML from

Re: AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2010-03-23 Thread AdWords API Advisor
Hi Harald, Can you link to the original thread so I can get more background information on this problem? Do you have the SOAP XML from your request that generates this error? Best, - Eric Koleda, AdWords API Team On Mar 22, 2:41 pm, Harald Bartel wrote: > Hello, > > this bug seems not to be fi

Re: AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2010-03-23 Thread AdWords API Advisor
Hi Harald, Can you link to the original thread so I can get more background information on this problem? Do you have the SOAP XML from your request that generates this error? Best, - Eric Koleda, AdWords API Team On Mar 22, 2:41 pm, Harald Bartel wrote: > Hello, > > this bug seems not to be fi

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2010-03-22 Thread Harald Bartel
Hello, this bug seems not to be fixed. What shoud I do if I have this problem? best regards Harald On Mar 4, 1:44 pm, AdWords API Advisor wrote: > Hello Xavier, > > This is a bug that the engineering team is going to have to resolve. > > I'll update this thread with more information when I

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-03-11 Thread bryanjj
Thanks Jeff! I was on vacation last week, but just catching up now. We still see this error daily, so if there is any more info you need, just let me know. Bryan Jacobs Marin Software On Mar 4, 1:44 pm, AdWords API Advisor wrote: > Hello Xavier, > >  This is a bug that the engineering team is

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-03-04 Thread AdWords API Advisor
Hello Xavier, This is a bug that the engineering team is going to have to resolve. I'll update this thread with more information when I have it, but they are actively looking into the issue. Cheers, -Jeff Posnick, AdWords API Team On Mar 4, 2:14 pm, Xavier wrote: > Thanks a lot Jeff, I was

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-03-04 Thread Xavier
Thanks a lot Jeff, I was able to reproduce the problem with the campaign that didn't had the problem, I created a new adgroup with only site placement, and this reproduced the error. I can remove those ad groups from the campaigns we own, but for other customers, I think we can't touch those ad g

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-03-04 Thread AdWords API Advisor
Hello, So this appears to be a new variation on an old issue. The common thread here seems to be that there is an ad group in the same campaign that contains only placement criteria (no keywords) and that ad group only has its siteMaxCpc bid set (no keywordMaxCpc). The presence of this ad group

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-03-02 Thread AdWords API Advisor
Hello, Hmmm... that is an old issue, and now that you mention it I do remember it cropping up last year. I'm going to dig a little and see if this appears to be the same cause. If so, it would explain why Xavier is seeing inconsistent behavior across different accounts. Cheers, -Jeff Posnick, A

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-02-27 Thread bryanjj
Jeff, We also saw this error yesterday for the first time in over a year. Before this was caused by a data issue on Google servers (support #246301284): "The corrupt ad groups were due to a problem on our end; they were basically incomplete ad groups, incorrectly created due to a bug which shoul

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-02-27 Thread Xavier
I set it zero and the content bid gets set to Auto when I see it through the web, if I'm not wrong Auto is not the same as using the search bid (it's an average of keyword bids). I solve this by editing the bids entering them manually through the web, but the idea is to use the API to

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-02-27 Thread AdWords API Advisor
Hello Xavier, If you don't have a value set for keywordContentMaxCpc (or you set it to 0) then the value of keywordMaxCpc will be used for content network CPC bids instead. So setting keywordMaxCpc will be enough to determine your content bid in that scenario. Cheers, -Jeff Posnick, AdWords API

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-02-26 Thread Xavier
Hi, setting only keywordMaxCpc works fine, but it sets the search max cpc, not the content one, and what I want to do is to set the content max cpc. The request id that succeeded is: http://schemas.xmlsoap.org/soap/actor/next"; soapenv:mustUnderstand="0" xmlns="https://adwords.google.com/api/ ad

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-02-26 Thread AdWords API Advisor
Hello Xavier, The request you just referenced shows the same behavior as the previous request, in that you're trying to set keywordContentMaxCpc on an ad group that has search disabled. Could you please try just setting keywordMaxCpc for that type of ad group, and if it fails, provide a requestI

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-02-26 Thread Xavier
I created a new campaign and ad group with the same settings, and I cannot reproduce the problem, it seems it happens only on the account I'm working. So, I don't know what's going on here with this error (I already tried setting the keywordMaxCpc only too). The SOAP request id is: http://sche

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-02-25 Thread AdWords API Advisor
ax cpc bid for search to "off" and only the content to > "on". > > So, the "Separate content keyword bids is only applicable in campaigns > with keyword cpc bids" message should mean that I can't set the > keywordcontentmaxcpc if search if off, so

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-02-24 Thread Xavier
rks selected in the campaign, and it fails for another customer which has search "off" and content "on", thus the ad group has the max cpc bid for search to "off" and only the content to "on". So, the "Separate content keyword bids is only applicable in camp

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-02-23 Thread AdWords API Advisor
rs, > > -Jeff Posnick, AdWords API Team > > > On Feb 22, 12:01 am, Xavier wrote: > > > > I have this java code: > > > >     AdGroup newAdgroup = new AdGroup(); > > >     newAdgroup.setId(THE_ID_VALUE); > > >     newAdgroup.setKeywordContentMax

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-02-23 Thread Xavier
e to create an ad group with the proper API > calls. > > Cheers, > -Jeff Posnick, AdWords API Team > > On Feb 22, 12:01 am, Xavier wrote: > > > I have this java code: > > >     AdGroup newAdgroup = new AdGroup(); > >     newAdgroup.setId(THE_ID_VALUE); > &g

AdWords API Re: Got this error "Separate content keyword bids is only applicable in campaigns with keyword cpc bids."

2009-02-23 Thread AdWords API Advisor
t; >     AdGroup newAdgroup = new AdGroup(); >     newAdgroup.setId(THE_ID_VALUE); >     newAdgroup.setKeywordContentMaxCpc(THE_CONTENT_BID); > > And when I call updateAdGroup(newAdgroup), I got this error: > > "Separate content keyword bids is only applicable in campaigns