Delay Action Step
Learn how to use the delay step to pause workflow execution for a specified duration
The delay step allows you to pause the execution of your workflow for a specified duration. This is useful for implementing features like follow-up notifications, reminder sequences, or cooldown periods.
Example Usage
Delay Step Output
| Property | Type | Required | Description |
|---|---|---|---|
| amount | number | Yes | The number of time units to delay |
| unit | 'seconds' | 'minutes' | 'hours' | 'days' | 'weeks' | 'months' | Yes | The time unit for the delay duration |
Delay Step Result
| Property | Type | Description |
|---|---|---|
| duration | number | The total delay duration in milliseconds |
The delay step can be skipped conditionally using the skip option, allowing you to implement
dynamic delay logic based on your workflow's needs.