Wait Node

Pause workflow execution for a defined time. Maximum 15 minutes. In-memory only — no webhook/form resume.

Written By pvdyck

Last updated 14 minutes ago

Wait Node

The Wait node pauses workflow execution for a defined duration before continuing.

Resume Modes (n8n Standard)

ModeDescriptionindie.money Support
After Time IntervalWait for a specified amount + unitSupported (max 15 min)
At Specified TimeResume at a specific date/timeSupported (must be within 15 min)
On Webhook CallResume when an external webhook is receivedNot supported
On Form SubmittedResume when a form is submittedNot supported

Parameters (After Time Interval)

ParameterDescription
AmountNumber of time units to wait
UnitSeconds or Minutes only (hours/days removed since they exceed the limit)

Parameters (At Specified Time)

ParameterDescription
Date & TimeThe specific date/time to resume execution

Limitations on indie.money

  • Maximum 15 minutes -- Longer waits are rejected with a validation error
  • In-memory only -- Pause state is held in Worker memory. If the Worker restarts, the wait may be lost
  • No webhook resume -- "Resume on Webhook" mode is not supported
  • No form resume -- "Resume on Form Submission" mode is not supported
  • Seconds and minutes only -- Hours and days options are removed
  • Best for short pauses between API calls (e.g., rate limiting)

Tips

  • Use with Split In Batches to add delays between batch processing
  • For longer delays, consider an async webhook pattern: trigger the work, then have the external service call back

Related