Hi Andras,The RateExceededError contains these three important fields:- rateScope - The scope of the rate that was exceeded, which can be ACCOUNT or DEVELOPER.
- rateName - Contains the name of the rate limit that was exceeded. The value can be, for example,RequestsPerMinute.
- retryAfterSeconds - Contains the suggested number of seconds your application should wait before retrying the request.
You can decompose the RateExceededError object to get these details. For example, in the PHP client library you can use the code below to get error details.
catch (SoapFault $fault) {
$errors = ErrorUtils::GetApiErrors($fault);
}
Let me know if this works.
Regards,
Shwetha, AdWords API Team.