Wait
The Wait task pauses workflow execution for a specified duration before continuing to the next task. The total delay is the sum of the hours, minutes, and seconds values.
Use Wait to introduce a deliberate delay — for example, sending a follow-up email after a set period, or pacing operations against rate-limited external services.
Configuration
| Property | Type | Description |
|---|---|---|
dry_run | boolean | Run without executing task effects |
pass_input | boolean | Forward the incoming input payload unchanged after the wait |
hours | number | Hours to wait |
minutes | number | Minutes to wait |
seconds | number | Seconds to wait |
TIP
The values are additive — a Wait with hours: 1, minutes: 30, seconds: 0 pauses for 90 minutes.
See also: Tasks overview
