Sequences

Sequence workflow
Multi-step automation sequence

Sequences (TinySequence) are stateful workflows that can pause and resume over extended periods: hours, days, or weeks. Unlike regular workflows that execute start-to-finish in seconds, sequences maintain state across long waits.

When to use sequences vs workflows

FeatureWorkflowSequence
ExecutionRuns start-to-finish in secondsCan pause for days/weeks
StateStateless (one-shot execution)Stateful (remembers where it left off)
WaitsDelay node (seconds/minutes)Wait for event, wait for time, wait for approval
Best forReal-time automationsMulti-step processes with human involvement

Example use cases

  • Onboarding drip: send a welcome email now, a tips email in 3 days, a check-in in 7 days
  • Approval flow: submit a request, wait for manager approval, then proceed
  • Follow-up sequence: send a proposal, wait 2 days, if no reply send a follow-up
  • Trial-to-paid: start trial, send usage tips at day 3, day 7, day 12, then conversion offer at day 14

How sequences work

  1. A trigger starts the sequence
  2. Nodes execute in order until they hit a wait step
  3. The sequence pauses and stores its state
  4. When the wait condition is met (time elapsed, event received, human approved), execution resumes
  5. This continues until the sequence completes

Wait types

Wait typeWhat it does
Wait for timePause for a specific duration (e.g., 3 days)
Wait for eventPause until a specific event occurs (e.g., user replies)
Wait for approvalPause until a human approves or rejects (Human-in-the-Loop)
Wait until datePause until a specific date/time

Building a sequence

  1. Open the Sequence builder (separate from the workflow canvas)
  2. Add a trigger to start the sequence
  3. Add action nodes and wait nodes
  4. Connect them in the order you want
  5. Publish the sequence
Note

Sequences use the same nodes as workflows (triggers, actions, logic, AI) plus additional wait nodes that are only available in the sequence builder.

Tip

Start with a regular workflow for simple automations. Only upgrade to a sequence when you need multi-day waits or human approval steps.