Skip to main content

Documentation Index

Fetch the complete documentation index at: https://colossal.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

A delay step pauses execution for a fixed amount of time before continuing to the next step.

Configuration

FieldTypeDescription
durationstringHow long to wait. Format: "N unit"
Supported units: minutes, hours, days, weeks.

Example

{
  "id": "wait-24h",
  "type": "delay",
  "duration": "24 hours",
  "next": "send-followup"
}

Use cases

  • Wait before sending a follow-up email after purchase
  • Add a cooling-off period before processing a refund
  • Space out notifications to avoid overwhelming customers

Next steps