Skip to main content

Delay Until Action

The Delay Until action pauses workflow execution until a specific date and time. The workflow automatically resumes at the scheduled time.

Jerome Bajou avatar
Written by Jerome Bajou
Updated this week

Overview

The Delay Until action pauses workflow execution until a specific date and time. The workflow automatically resumes at the scheduled time.

How It Works

  • Workflow execution pauses at the delay step

  • Execution resumes automatically at the specified datetime

  • Workflow context is preserved during the delay


Configuration

Date and Time (Required)

Target datetime to resume execution. Supports multiple formats:

Formats:

  • YYYY-MM-DD HH:MM - e.g., 2024-12-25 14:30

  • YYYY-MM-DDTHH:MM - ISO 8601 format, e.g., 2024-12-25T14:30

  • YYYY-MM-DD HH:MM:SS - With seconds, e.g., 2024-12-25 14:30:00

Supports Variables:

  • {booking.date} 09:00 - Resume at 9 AM on booking date

  • {addDays(now(), 7)} 10:00 - Resume in 7 days at 10 AM

Examples:

  • 2024-12-25 14:30 - December 25, 2024 at 2:30 PM

  • {booking.date} 09:00 - 9 AM on the booking date

  • {addDays(now(), 1)} 08:00 - Tomorrow at 8 AM


Use Cases

  • Schedule follow-ups for specific dates

  • Send reminders on booking dates

  • Schedule tasks for future dates

  • Create date-specific workflows

  • Coordinate with external schedules


Examples

1. Booking Day Reminder

Workflow:

  1. Booking Confirmed trigger

  2. Delay Until ({booking.date} 08:00)

  3. Send Notification (day-of reminder)

2. Post-Event Follow-up

Workflow:

  1. Booking Confirmed trigger

  2. Delay Until ({addDays(booking.date, 1)} 10:00)

  3. Send Notification (post-event survey)

3. Scheduled Maintenance

Workflow:

  1. Scheduled Time trigger

  2. Delay Until (2024-12-31 23:59)

  3. Action (maintenance task)


Important Notes

  • Date must be in the future

  • Timezone is based on your organization's timezone

  • Maximum delay may be limited by your plan


Best Practices

  1. Use variables - Reference booking dates, etc.

  2. Verify future dates - Ensure datetime is in the future

  3. Consider timezones - Be aware of timezone conversions

  4. Test thoroughly - Verify delay behavior in test mode


Related Documentation

Did this answer your question?