Hello Maxime,

It appears that you have basic access. Please read our rate sheet 
<https://developers.google.com/adwords/api/docs/ratesheet> guide carefully. 
Performing "get" operations in bulk will only use up 1 operation, but 
performing "mutate" operations in bulk still counts as 1 operation per item 
that you are mutating. This means that only the first 10,000 mutate 
operations on a given day will succeed.

Regards,
Mike, AdWords API Team

On Tuesday, October 14, 2014 12:28:28 PM UTC-4, Maxime Menigoz wrote:
>
> Hi,
>
> I need to update the bid of 500 Ads in AdGroups more than 10 000 times in 
> a day. That's why I try to pack all operations in one to avoid the over 
> query limit but I think I don't understand something.
>
> I followed examples to have this code :
>
> myfunction($user, $adGroupIds, $value)
> {
>   $mutateJobService = $user->GetService('MutateJobService', "v201406");
>   $operations = array();
>   foreach ($adGroupIds as $adGroupId)
> {
> $adGroup = new AdGroup();
> $adGroup->id = $adGroupId;
>
> $bid = new CpcBid();
> $bid->bid =  new Money($value);
> $biddingStrategyConfiguration = new BiddingStrategyConfiguration();
> $biddingStrategyConfiguration->bids[] = $bid;
> $adGroup->biddingStrategyConfiguration = $biddingStrategyConfiguration;
>
> $operation = new AdGroupOperation();
> $operation->operand = $adGroup;
> $operation->operator = 'SET';
> $operations[] = $operation;
> }
>
>   $policy = new BulkMutateJobPolicy();
>   $policy->prerequisiteJobIds = array();
>
>   $job = $mutateJobService->mutate($operations, $policy);
>
>   $selector = new BulkMutateJobSelector();
>   $selector->jobIds[] = $job->id;
>
>   while ($job->status != "COMPLETED")
> {
> $jobs = $mutateJobService->get($selector);
> $job = $jobs[0];
> }
>
>   if ($job->status == "COMPLETED")
> {
> echo "job completed";
> }
> }
>
> With this code, I still have "[RateExceededError <rateName=BillingPerDay, 
> rateKey=level1_plan, rateScope=DEVELOPER, retryAfterSeconds=86400>]" after 
> 10 000 updates.
> Could someone explain me what I do wrong ?
>
> Thanks,
> Maxime
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/86140e64-abca-47a7-936c-85799ea1d068%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to