Skip to main content

Wait

The Wait node pauses an orchestration run for a specified duration or until a specific date and time. Wait Node

Use Cases

  • Add a delay between consecutive API calls to avoid rate limiting
  • Wait for a scheduled time before sending a reminder
  • Implement time-window logic (e.g. “wait until next business day”)

Node Reference

Parameters

ParameterTypeRequiredDescription
Wait ModeToggleYesfor Duration — pause for a fixed amount of time; Until Time — pause until a specific date/time
AmountNumberConditionalDuration to wait (required for for Duration)
UnitSelectConditionalUnit of the duration: Seconds, Minutes, Hours, Days (required for for Duration)
Date/TimeDateTimeConditionalResume at this specific timestamp (required for Until Time)

Wait Modes

for Duration

Pauses for a fixed duration after the node is reached.
FieldExample
Amount5
UnitSeconds
The orchestration resumes automatically after the specified time.

Until Time

Pauses until an absolute date and time is reached, regardless of when the node was entered.
FieldExample
Date/Time2025-03-15T09:00:00Z

Output Data

The upstream node output passes through the Wait node unchanged. No data transformation occurs.
  • Human in the Loop — A higher-level wait node that includes approval channel logic
  • Schedule Trigger — Start an orchestration at a specific time instead of waiting mid-run
  • For Loop — Use Wait inside a loop to throttle iteration rate