How to setup retry when the per minute limit is reached for request methods

Hi Christian,

Thanks for your response. I tried different methods of throttling (example using a counter which can reset after 1 minute) but it does not work because the serverless app re-instantiates when a new event is received. Due to this, the counter keeps starting from 0 for every new event. I also tried having a separate helper.js where again the same issue happened.

For now, I have implemented a retry mechanism using Scheduled events so that the failed requests can be retried - Freshworks Developer Docs | Configure scheduled events

The limitation here is that we can scheduled events after 5 mins only (as we can’t use setTimeout or setInterval functions).

Also for accounts where high number of requests are received, working on increasing the per minute limit based on requirements.

Thanks