Aura LogoAura

Pipeline Stages

The complete list of pipeline columns Aura tracks each lead through, in order.

Pipeline Stages

Aura's pipeline has 13 stages, derived at read time from each lead's call history. Stages are computed (not stored) — the underlying leads.status field exists for non-pipeline consumers (Zapier, partner API), but the pipeline view always recomputes the column from the lead's current call state.

Stages in display order

#StageMeaning
1interestedVisitor started a booking flow (checked availability or selected a slot) but hasn't submitted contact info.
2disqualifiedLead failed a disqualification rule on the booking form. Stays visible in the pipeline; DQ reason tracked for analytics.
3qualifiedLead passed DQ rules and provided contact info but hasn't yet booked a call.
4bookedLead has a scheduled future call. RSVP is pending.
5confirmedLead has a scheduled future call AND confirmed attendance (RSVP=yes).
6declinedLead declined the most recent call invite (RSVP=no or status=declined).
7cancelledThe call was cancelled before it occurred.
8attendedLead attended their scheduled call (most recent past call).
9unfitSticky state: lead was marked not a fit for the role on the most recent past call (post-call, not ICP). Cleared when the lead books a new call.
10no_showLead didn't attend their scheduled call (guest no-show on the most recent past call).
11follow_upSticky state: lead is awaiting a follow-up touchpoint. Cleared only by Won or Lost on a new call.
12lostSales outcome: deal was lost on the most recent past call.
13wonSales outcome: deal was won (closed) on the most recent past call.

Derivation rules

Stages are evaluated by derivePipelineStatus() in a fixed order — the first matching rule wins:

  1. Disqualified — if the lead failed a DQ rule, no further evaluation.
  2. Future booking call — if the lead has any scheduled future call, place by RSVP state (booked, confirmed, declined).
  3. Most recent past call — if a past call exists, place by its outcome (attended, no_show, cancelled, won, lost, etc.).
  4. Intent booking_stage — if no calls yet, place by where the visitor got in the booking flow.
  5. Fallbackinterested.

Some stages are sticky: once a lead enters follow_up, it stays there across new bookings until cleared by Won or Lost on the most recent call.

On this page