Error flow

I work with some very complex flows, so there are times when the request number sent to such an application is overloaded and gives me errors! How can I create another means of flow in case it happens to give an error again, it repeats the same flow so that the automation continues?

This is called the Rate Limit error. Almost all major apps have applied a limit on the number of requests you can send to the app server every minute or every day.

The best way to deal with this is to use an error handler (prefer Break) to automatically handle errors, reattempt run and store the incomplete execution for your manual fix. Just right-click on the module and select add an error handler (then select break).

Learn more about error handlers here: https://www.make.com/en/help/errors

Learn about the break: https://www.make.com/en/help/errors/retry#using-the-break-directive

Watch this video to see how to implement Break in your scenario: Loom | Free Screen & Video Recording Software | Loom

Regards,
Manish Mandot
Let’s Chat

1 Like

Ok, obrigado, irei implementar isto em meu cenário