
Inspector
The Wait step inspector has a single Duration field:- A number input (default:
1) - A unit dropdown: Seconds, Minutes (default), Hours, Days
When to use it
Sync vs async behavior
A sync run that asks for longer fails, with a message telling you to run the workflow asynchronously. The total budget matters because a Wait inside a Loop body runs once per iteration: five three-second waits fit, six do not.
What lands in ctx
After the wait completes, the duration is recorded under the step’s id:Considerations
- Durations are from when the Wait step is reached, not from when the workflow started. Upstream step latency doesn’t shift the timer.
- Check state after waiting. The real-world situation may have changed during the wait (e.g., the contact already replied). Verify current state in the next step rather than assuming nothing changed.
- Don’t use Wait for periodic execution. Use a Timer trigger for recurring scheduled jobs instead of a long-running workflow with internal Waits.

