Error “429” or Rate Limit Error
These error messages are commonly translated as “Too Many Requests” errors and usually happen when a Make module reaches the API rate limit of the specific app.
The easiest way to prevent them is to:
- Work with less data in a single scenario execution to reduce the total number of module executions (operations in a short time period.
- Create short delays between the module’s executions with the use of the Sleep module.
- In the case of the webhook scenarios, execute them sequentially in order to reduce the number of scenario executions running at the same time.
You can find more info on handling “429” errors in this article.