Wait

The Wait node pauses workflow execution for a specified duration. Use it for rate limiting, delayed actions, or polling intervals.

The Wait node pauses workflow execution for a specified duration. Use it for rate limiting, delayed actions, or polling intervals.

Overview

PropertyValue
Inputs1
Outputs1
OutputPasses through input

Parameters

ParameterTypeDescription
labelstringNode identifier (camelCase)
durationnumberDelay in milliseconds (e.g. 1000 = 1 second)

Example

{
  "type": "wait",
  "data": {
    "label": "delayOneSecond",
    "duration": 1000
  }
}
  • Node Types – Overview of all node types
  • Loop Node – Use Wait inside loops for rate limiting