Guide · Make.com · Troubleshooting

10 Common Make.com Scenario Errors and How to Fix Them (2026)

Your scenario ran fine for weeks and now it doesn't. Here are the ten errors non-technical users run into most often, what you'll notice, the likely cause, and how to fix each one step by step, without code.

By Flowpaja · Published

The 10 common Make.com scenario errors covered in this guide
Start in the scenario's History tab, find the red module, then match the error below.
About this guide: general troubleshooting steps for Make.com scenarios. Make's menus, error names and plan limits change, so check Make's help center for the current wording.

Your automation ran fine for weeks, and today a client says they never got their welcome email, or your Slack channel has gone quiet. Something broke in Make.com (formerly Integromat), and the error messages don't explain much.

This guide covers the ten errors non-technical users run into most often. For each one you'll see what you'll notice, the likely cause, and how to fix it step by step. You don't need to write code.

Before You Start: Where to Look

Almost every fix starts in the same place:

  1. Open the scenario and go to its History tab (the list of past runs).
  2. Click the failed run to open its details.
  3. Look for the module with a red warning icon. That's where it broke.
  4. Click the bubble above that module to see the input it received and the error it returned.

The error name, such as DataError or RateLimitError, and the message under it usually point straight to one of the causes below.

The 10 Errors

1. Connection Expired / invalid_grant

What you see: An error mentioning invalid_grant, "token expired", "token has been revoked", or a ConnectionError/InvalidAccessTokenError on a Google, Microsoft or similar module.

Likely cause: Make lost permission to use your account. Common reasons: you changed your password, removed Make's access in your account security settings, your company admin changed a policy, or the authorization simply expired.

Fix:

  1. In Make's left menu, open Connections.
  2. Find the connection used by the failing module. Make usually flags broken ones.
  3. Use the option to reauthorize it and sign in again with the same account.
  4. If reauthorizing fails, create a new connection, select it in the module, and save.
  5. Click Run once to confirm the fix.

2. 429 Too Many Requests / RateLimitError

What you see: 429, "rate limit exceeded", or "too many requests", often only on busy days.

Likely cause: Your scenario is sending requests faster than the other app allows. This is common when an iterator processes a long list, or when several scenarios use the same account at once.

Fix:

  1. Add a Sleep module (under Tools) inside the loop to pause a second or two between items.
  2. Lower the trigger's Limit so fewer items are processed per run.
  3. Spread your scenario schedules out so they don't all run at the same minute.
  4. Add a Break error handler to the failing module and switch on its automatic completion (retry) option (see "Preventing Errors" below). The failed item is saved as an incomplete execution and retried later instead of lost.

3. 400 Bad Request from Wrong Mapping

What you see: A DataError or 400 Bad Request, often with a vague note like "invalid value", "invalid JSON", or "parameter is not valid".

Likely cause: The data you mapped into a field isn't what the app expects. Examples: text where a number is required, an empty value, a whole array where one item is needed, or a field that no longer exists because someone renamed a column or form question.

Fix:

  1. Open the bubble on the failing module and check the input. Look for empty fields or odd values.
  2. Compare it with the output of the module that supplies the data.
  3. Remap any field that shows a missing or grey item. This happens after headers or form questions change.
  4. Use built-in functions to clean data. For example, ifempty() supplies a default value, and parseNumber() turns text like "1,200" into a number.
  5. Run once with real test data.

4. 401 Unauthorized / 403 Forbidden

What you see: 401, 403, "insufficient permissions", "access denied", or "the caller does not have permission".

Likely cause: The connection works, but the account behind it can't access that specific item. Examples: a Google Sheet shared with someone else, a Shared Drive you're not a member of, a private Slack channel, or an app plan that doesn't include API access. 401 usually means authentication failed (see error 1). 403 usually means you're signed in but not allowed.

Fix:

  1. Check which account the connection uses. Open Connections and look at its name or email.
  2. Log in to the app as that account and confirm it can open the file, channel, or record by hand.
  3. Share the item with that account, invite the Make app to the channel, or ask your admin for access.
  4. If the app requires special permissions (scopes), recreate the connection and approve every requested permission.

5. BundleValidationError / Missing Required Field

What you see: A BundleValidationError with messages like "Validation failed for 1 parameter(s)" or "Missing value of required parameter".

Likely cause: A required field in the module received nothing. Usually the source data was empty for that run, for example someone skipped an optional form question that you mapped into a required field.

Fix:

  1. Note the parameter name in the error and find that field in the module.
  2. Check the input bubble to see whether the mapped value was empty.
  3. Give it a fallback with ifempty(your field; "Not provided").
  4. Or add a filter before the module so runs without that value are skipped.

6. Scenario Deactivated After Repeated Errors

What you see: The scenario's on/off switch is off, and you may have received an email from Make saying it was deactivated.

Likely cause: Make stops scenarios that keep failing, so they don't waste operations or cause damage. Depending on the error type and trigger, this can happen on the first error or after several consecutive failed runs. The scenario settings include a Number of consecutive errors option that controls how many failed runs in a row are allowed; scenarios that start with an instant trigger (webhook) can be deactivated right after the first error.

Fix:

  1. Open History and find the first failed run.
  2. Fix the underlying cause, usually one of the other errors in this list.
  3. Use Run once to confirm it works.
  4. Switch the scenario back on with its on/off toggle.
  5. Check that the schedule is still correct.

Turning the scenario back on without fixing the cause will just get it deactivated again.

7. Incomplete Executions Piling Up

What you see: A number next to Incomplete executions in the scenario, or data that seems to be stuck halfway.

Likely cause: When storing incomplete executions is enabled in the scenario settings, Make saves failed runs instead of discarding them. Runs caught by a Break handler are saved there too.

Fix:

  1. Open the scenario's Incomplete executions tab.
  2. Open an item to see which module failed and why.
  3. Fix the cause, whether a connection, a mapping, or a missing value.
  4. Use the option to retry each saved execution. For some you can edit the stored data before retrying.
  5. Delete executions you don't need, such as test data or items you've handled by hand.

If you don't want this, turn off storing incomplete executions in the scenario settings. Be aware that failed data will then be lost rather than saved for later.

8. Iterator/Aggregator Gives the Wrong Number of Bundles

What you see: You expected one email with a list of ten items. Instead you got ten emails, or one email with a single item.

Likely cause: An Iterator splits an array into separate bundles, and everything after it runs once per bundle. An aggregator, such as the Array aggregator or Text aggregator, combines them back into one. It only works properly if its Source Module is set to the module that started the split, usually the iterator.

Fix:

  1. Open the aggregator and check the Source Module setting. Point it at your Iterator, or at the search module that returns multiple items.
  2. Make sure the module that should run only once, such as "Send email", comes after the aggregator.
  3. If you're getting too few items, check that no filter between the iterator and the aggregator is dropping bundles.
  4. Only use Group by if you really want separate groups, for example one per customer.
  5. Run once and count the bundles in each bubble.

9. Date and Time Zone Mismatches

What you see: Appointments that are one or more hours off, "yesterday's" orders showing today's date, or filters on dates that behave strangely.

Likely cause: Make works with dates internally in a standard format based on UTC. Each app may assume a different time zone, and Make itself has time zone settings for your profile and your organization.

Fix:

  1. Check the time zone settings in your profile and your organization in Make, and make sure they match where you work.
  2. When writing dates, use formatDate() with an explicit time zone, e.g. formatDate(your date; "YYYY-MM-DD HH:mm"; "Europe/London").
  3. When reading dates that arrive as text, use parseDate() with the correct format and time zone.
  4. Check the time zone setting in the connected apps too, such as the Google Sheet (File → Settings) and your calendar.

10. Running Out of Operations or Credits

What you see: Scenarios stop running, an OperationsLimitExceededError, or a warning from Make about your usage limit.

Likely cause: Each module action uses part of your monthly allowance. Make now counts usage in credits rather than operations. Polling triggers that check frequently, big iterators, and forgotten test scenarios drain it fastest.

Fix:

  1. Check your usage on the organization dashboard to see which scenarios use the most.
  2. Increase the time between runs for scheduled triggers that don't need to be fast.
  3. Use instant (webhook-based) triggers where the app offers them, so a run only happens when something actually changes.
  4. Put filters early in the scenario so unwanted items stop before the expensive modules.
  5. Turn off test or duplicate scenarios.
  6. If you still need more, upgrade your plan or buy extra credits. Check Make's pricing page for current options.

Preventing Errors

Error Handlers

Right-click a module and choose the option to add an error handler. Make offers five directives:

  • Ignore: skips the error and continues with the next bundle. Use it only when losing that item doesn't matter.
  • Resume: replaces the failed output with a substitute value you define, then continues.
  • Break: stops processing that bundle and saves the rest of the run as an incomplete execution. With automatic completion switched on, Make retries it after a delay you set, which makes it the best choice for temporary problems like rate limits.
  • Rollback: stops the run and marks it as an error. Only modules that support transactions (such as Make's data stores) can have their changes undone; changes already made in apps like Gmail or Google Sheets stay. When a module has no error handler, Make's default behaviour is similar to Rollback, unless storing incomplete executions is enabled, in which case many failed runs are saved there instead.
  • Commit: stops the run, keeps changes already made, and marks the run as successful.

Filters

Add filters on the links between modules (click the connecting line) to stop bad or empty data early. For example, you can require that "Email exists" before sending a message.

Testing with Run Once

Before turning a scenario on, submit real test data and click Run once. Open every bubble and check the inputs and outputs. Test again after any change to the connected apps, such as a new sheet column or a renamed form question.

Wrapping Up

Most Make.com failures come down to a handful of causes: expired connections, missing permissions, changed data, or limits being hit. Start with the History tab, find the red module, and read its bubble. Fix the cause before switching the scenario back on. Add a few filters and error handlers, and test with Run once after every change.

FAQ

Will Make tell me when a scenario fails?
Usually yes. Make sends email notifications about errors and deactivations, and you can adjust them in your profile's notification settings. Make sure those emails aren't going to spam.
Do failed runs still use credits?
Modules that ran before the error still count, and so does a trigger checking for data. Put filters early and fix recurring errors quickly.
Can I recover data from a failed run?
Only if storing incomplete executions was enabled, or the module had a Break handler. Otherwise, check the run's details in History and re-enter the data by hand.
Why does it work with Run once but fail on the schedule?
Common reasons are different data at scheduled times (empty fields, larger batches that hit rate limits), a trigger's starting point that has moved on, or time zone differences. Compare a failed scheduled run with a successful manual one in History.

Still broken? Get it fixed

If you've worked through the list and your scenario still fails, send it to us on Fiverr: share the exported blueprint and a description of the error, no logins needed. Prefer a ready-made scenario instead? See the Make.com templates.

Stuck on an error in your own Make scenario? Make scenario fix / debugging on Fiverr, from $25: send the exported blueprint and a description of the error, no logins needed.

← All guides · All templates

Make and the other app names mentioned are trademarks of their owners. Flowpaja is independent and not affiliated with or endorsed by Make. Menus, error names and plan limits change; check Make's current docs.