Hi,
Firstly I wanted to check that I have this right as we were recently rate limited for 24 hours as our automation program has grown. I modified it so that in theory it just does one call instead of x calls per keyword bid.
In a nutshell what I have done is built multiple operators for the AdGroupCriterionOperation Like :
$operation = new AdGroupCriterionOperation();
$operation->setOperand( $adGroupCriterion );
$operation->setOperator( Operator::SET );
$operations[] = $operation;
Into the $operations array and sent them in one single mutate like :
$adGroupCriterionService->mutate( $operations );
I wanted to confirm that this will make just one call to the API and that it doestn unpack it and count the operations as calls.
Also is there a way for me to check how many calls we're making and from where it may be coming from?
e.g. 100 request to AdGroupCriterionService