Skip to main content
Automations are currently in private alpha and only available to a limited number of users. APIs might change before GA.To use the methods on this page, you must upgrade your Resend SDK:
npm install resend@6.10.0-preview-workflows.3
Contact us if you’re interested in testing this feature.
A delay step pauses the Automation for a specified duration before continuing to the next step. Common use cases:
  • Email sequences — Space out emails in an onboarding series.
  • Cooldowns — Prevent sending too many emails in a short period.
  • Follow-ups — Give users time to take action before sending a reminder.

Setting up a delay

You can configure a “Time Delay” duration using natural language.Automation
The minimum delay is 1 second and the maximum delay is 2592000 seconds (30 days).

Configuration

FieldTypeRequiredDescription
secondsnumberYesThe number of seconds to wait before continuing.
{
  "ref": "wait_1_day",
  "type": "delay",
  "config": {
    "seconds": 86400
  }
}
View the Create Automation Steps API reference.