Skip to main content

Wait Node

Pauses the workflow for a specified duration and then passes the input through unchanged.

Parameters

duration

Delay in seconds before continuing the workflow execution. Supports decimal numbers for precise timing (e.g., 0.1, 1.5, 2.7). Maximum duration: 30 seconds.

Examples

Fixed Duration Examples

Wait for 2 seconds

2

Wait for half a second

0.5

Wait for 1.5 seconds

1.5

Expression Examples

Wait based on input data

input.delaySeconds ?? 1;

Convert string input to number

Number(input);

Wait based on item data (item mode)

item.processingTime;

Wait with conditional logic

input.priority === "high" ? 0.1 : 2;