Skip to content

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

PropertyTypeDescription
dry_runbooleanRun without executing task effects
pass_inputbooleanForward the incoming input payload unchanged after the wait
hoursnumberHours to wait
minutesnumberMinutes to wait
secondsnumberSeconds to wait

TIP

The values are additive — a Wait with hours: 1, minutes: 30, seconds: 0 pauses for 90 minutes.


See also: Tasks overview

S-Launch