Re: Question about adParam GET/SET best practices

2012-07-31 Thread marc
Thanks for the great answers. They were very helpful. Exactly what I was looking for. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: Question about adParam GET/SET best practices

2012-07-31 Thread Peter Crowley
Hi Marc, Further to Dorian's comment here is some sample code: while($rec=mysql_fetch_assoc($sqlResult)) { $dbKeys[]=$rec['KWP_id']; // Create keywordParam. $adParam = new AdParam($rec['AdGroupID'], $rec['criterion_id'], cleanCurrency($rec['KWP_text']), $rec['KWP_index']); $op

Re: Question about adParam GET/SET best practices

2012-07-31 Thread Dorian Kind
Hi Marc, unfortunately, AdParamOperations are not (yet?) supported by the BulkMutateService, so what I do is use multiple threads to perform these types of updates faster. Take note that you'll have to check for RateExceededErrors. Also, it's not required to only send operations for a single a

Question about adParam GET/SET best practices

2012-07-30 Thread marc
AdParam Get/Set best practices I am running a script that updates the AdParams for a campaign once a day. There are potentially 90,000 adgroups that could be updated daily. This takes forever, when it works without some sort of error occurring. I was wondering if anyone had some tips on best