Skip to main content

Sleep

Sleep

Pauses the flow execution for a specified duration in milliseconds.

This can be useful for throttling, adding artificial delays, or spacing out operations (e.g. waiting for external systems to settle).

Milliseconds​

The number of milliseconds to pause the flow.
Must be an integer between 1 millisecond and 3,600,000 milliseconds (1 hour).

  • Values below 1 or above 3,600,000 will be ignored or cause the flow to fail.
  • The pause is blocking — no further steps in the flow will run until the time has passed.

Example​

To pause the flow for 5 seconds:

  • Milliseconds: 5000