What is your goal?
Hi All, I am receiving error on List Group Items:
RateLimitError
[429] Request id: 035d5cec-938d-97ae-a854-f6adb079a072
Daily limit exceeded (DAILY_LIMIT_EXCEEDED)
How I can fix, I am on Pro Plan on monday and on Pro Plan on make as well. I have consumed 1200 operations on make.
I am fetching from group items and then creating records in another board.
What is the problem & what have you tried?
I have tried changing API key same problem
Error messages or input/output bundles
[429] Request id: 035d5cec-938d-97ae-a854-f6adb079a072
Daily limit exceeded (DAILY_LIMIT_EXCEEDED)
Create public scenario page
The 429 error is coming from monday.com, not Make.
Even though the module is might use one Make operation for example, Make may send multiple API requests to Monday if the group contains many items because results are paginated.
Each request counts toward Monday’s daily API limit, which can trigger the daily limit.
If you’re pulling a large group (thousands of items), try:
This could be intermittent server issues on the external service.
Handle errors so scenarios don’t stop
You might want to add some error handling to your modules to handle exceptions, so the failing module(s) can automatically be ignored or retried after a short period. By handling any errors by adding a “Error handler” to the module, the scenario won’t throw errors and get switched off.
Error directives can only be added to an error handler route
1. Right click a module and select “Add error handler”
2. Error handlers will appear
For more information on error handling, see:
— @samliew