Skip to main content
The Delay node pauses workflow execution for a specified amount of time. This is useful when you need to wait for animations, API responses, or other time-dependent operations.

Parameters

ParameterTypeRequiredDescription
delay_timenumberYesTime to wait in milliseconds

Examples

Basic Delay

Wait for 2 seconds:
{
  "id": "abc123",
  "name": "Wait for animation",
  "action": "DELAY",
  "parameters": {
    "delay_time": 2000
  }
}

Notes

  • Time is specified in milliseconds (1000ms = 1 second) but shown in seconds in visual mode
  • Use delays sparingly; prefer using wait_time parameters on action nodes when waiting for specific elements