Robots are trying to use Gsuite activities where initially its connecting to same gmail accout, However, it isfailing in Gsuite scope activities. Error says: too many concurrent request for the user [429] Sorce Gsuite scope. It is related to gsuite gmail api quote limit reached , so can how to resolve this
Try using different integration connections for both with teo different id’s and check
Cheers
Not using integration connection, using gsuite scope activities - its related to API quote limit reached , not sure how to fix this
Then try using different accounts for each bot…or give a delay when this error occurs and retry after sometime
As the error occurs due to too many requests
cheers
That is not what causing the issue, On further analysis we found that its trying to get mail messages through gsuite, however only 250 quote limit is allowed as per google workspace documentation. Any workaround that could be done to make sure this quote limit doesn’t exceed while getting mail messages via gsuite
Google API documenation : Usage limits | Gmail | Google Developers
If you see the docuemntation…it is per user per second…so either increase the number of users or the time which is what I believe needs to be done as we cant change the limits
you can limit the number of requests or as specified increase the time delay or use random delay to get requests passed
retry scope with random delays also would help
cheers
Hi @Sparks811
Go to the G Suite Admin Console and navigate to the API Quotas page to check your current quota usage for the Gmail API. Make sure you are aware of the specific quota limits and the number of requests you have made.
If you are making a large number of requests within a short timeframe, you may need to reduce the frequency or optimize your code to minimize the number of requests. This can involve batching requests, implementing caching mechanisms, or optimizing your code for efficiency.
Thanks!!