Timer
Pause workflow execution for a specified duration.
Add delays to workflow execution for rate limiting, scheduling, or waiting.
Configuration
Inputs
| Name | Code | Type | Required | Default | Description |
|---|---|---|---|---|---|
| Delay | delay | Integer | No | 1 | Delay in seconds |
Outputs
Empty on success, error message on timeout.
Usage
{
"delay": 5
}Use Cases
- Rate limiting: Wait between API calls to avoid throttling
- Polling: Add delay between status checks
- Scheduling: Wait for external processes to complete
- Debouncing: Prevent rapid repeated executions