Skip to Content
DocumentationWorkflowNodesWait

Wait Node

Pauses workflow execution for a specified duration or until a specific time.

Input Fields - Duration Mode

Duration: Specify how long to wait. Enter a number followed by the unit (s for seconds, m for minutes, h for hours, d for days). Examples: 30s, 5m, 2h, 1d.

Dynamic Duration: Use workflow variables to set wait time dynamically. Example: ${workflow.variables.waitTime} + 's'

Input Fields - Until Mode

Date/Time: Specify the exact date and time when the workflow should resume. Can be a fixed timestamp or a workflow variable containing a date.

Timezone: The date/time is interpreted in the workflow’s configured timezone.

Tips:

  • Use wait nodes to add delays between actions
  • Useful for rate limiting or scheduling follow-up actions
  • Can use workflow variables for dynamic wait times
  • Duration mode is better for relative delays, Until mode for absolute timing
Need help? Have feedback?