Hi,
I already had placed this check in place.
But this seems not capturing "authorizationError":"ACTION_NOT_PERMITTED"
My Example:
try {
$CampaignCriterionServiceClient = $googleAdsClient->getCampaignCriterionServiceClient();
$response = $CampaignCriterionServiceClient->mutateCampaignCriteria(
$customerId,
$operations,
['partialFailure' => true, 'validateOnly' => false, 'responseContentType' => ResponseContentType::MUTABLE_RESOURCE]
);
} catch (GoogleAdsException $googleAdsException) {
throw $googleAdsException;
} catch (ApiException $apiException) {
throw $apiException;
}
Thanks,