Skip to main content
Outlit tracks two independent dimensions of your customer relationships as part of the customer context graph: contact journey (how engaged each person is) and account billing (the commercial relationship). These are separate because a contact can be highly engaged while their company hasn’t paid yet, or a company can be paying while a specific team member is inactive.

How does Outlit model the customer journey?

Outlit tracks contacts and accounts separately:

Contact Journey (per person)

Account Billing (per company)


What are the contact journey stages?

Each person (contact) progresses through stages based on their product engagement:
StageMeaningHow It’s Set
DiscoveredEmail known, hasn’t signed up yetAuto-detected by browser SDK when email is provided without userId
Signed UpCreated an accountAuto-detected by browser SDK when both email and userId are provided
ActivatedCompleted onboarding or key milestoneManual — call user.activate()
EngagedActively using the productAuto-inferred from product activity via PostHog or your SDK (browser/server)
InactiveNo activity for extended periodAuto-inferred when no activity detected for 30+ days
Contact stages track product engagement, not billing. A contact can be Engaged even if their company hasn’t paid, or Inactive even if their company is actively paying.

How stages progress

Contacts move forward through Discovered, Signed Up, Activated, and Engaged. They can never move backwards—an Engaged contact can’t become Activated again. The one exception is Inactive: contacts automatically return to Engaged when they have new activity.

How does Outlit detect stages automatically?

Discovered vs Signed Up

The difference is determined by the identifiers you provide:
When you identify a visitor with only an email (no userId), they’re marked as Discovered:
outlit.identify({
  email: 'jane@example.com',
  traits: { source: 'newsletter' }
})
Typical triggers: newsletter signup, contact form submission, lead magnet download.
If a Discovered contact later provides a userId (e.g., they sign up after submitting a lead form), they automatically advance to Signed Up.

Automatic engagement and inactivity

Outlit monitors product activity and automatically advances contacts to Engaged when they show consistent usage — active on multiple distinct days within a rolling time window. Activity signals come from the browser SDK, server SDK, and connected integrations like PostHog. When contacts haven’t had any product activity for an extended period (default: 30 days), they’re marked Inactive. When an inactive contact returns, they automatically recover to Engaged.

How do I manually set contact stages?

These examples show browser SDK usage where the user is already identified. For server-side usage, see Node.js SDK → Contact Stage Methods.

user.activate()

Mark a contact as activated after they complete onboarding:
outlit.user.activate({
  flow: 'onboarding',
  completedSteps: ['profile', 'first_action', 'invite_team']
})
Call this when users complete your onboarding flow, perform a key “aha moment” action, or reach your definition of activation.

user.engaged()

While engagement is calculated automatically, you can explicitly mark it for specific milestones:
outlit.user.engaged({
  milestone: 'power_user',
  actionsThisWeek: 50
})

What are the account billing statuses?

Each account (company) has a billing status that’s separate from individual contact journeys:
StatusMeaningHow It’s Set
NoneNever had a subscriptionDefault
TrialingActive trial periodAutomatic (Stripe) or manual
PayingActive paid subscriptionAutomatic (Stripe) or manual
ChurnedHad subscription, now cancelledAutomatic (Stripe) or manual

How does Stripe integration work?

If you’ve connected Stripe to Outlit, billing status is handled automatically:
Stripe Subscription StatusAccount Billing Status
trialingTrialing
activePaying
canceledChurned
unpaidChurned
When a subscription status changes in Stripe, Outlit automatically updates the account’s billing status. Individual contact journey stages are not affected.
Stripe integration links accounts via email matching. When Outlit syncs a Stripe customer, it finds the matching account and updates its billing status.

How do I set billing status manually?

For non-Stripe payment processors or custom billing logic:
// When a trial starts
outlit.customer.trialing({ domain: 'acme.com', trialEndsAt: '2025-06-15' })

// When payment succeeds
outlit.customer.paid({ domain: 'acme.com', plan: 'pro', amount: 99 })

// When subscription is cancelled
outlit.customer.churned({ domain: 'acme.com', reason: 'too_expensive' })
Billing methods target the account by domain, not individual contacts. All contacts under that account share the same billing status.

Best practices

Let integrations handle what they can. Discovered and Signed Up are auto-detected by the browser SDK based on identifiers. Engaged and Inactive are auto-inferred from product activity via PostHog or your SDK. Stripe handles billing status. The main stage you need to instrument manually is Activated — call user.activate() when users complete your definition of activation. Understand the separation. Contact journey and account billing are independent. Jane can be Engaged while her company is on None, or Inactive while her company is Paying. When Jane returns after being Inactive, she auto-recovers to Engaged regardless of billing status. Call stage methods at the right time. Stage methods like user.activate() should be called when the action is confirmed complete, not when the user clicks a button. Wait for the backend to confirm success before tracking. Include useful properties. Properties help you analyze stage transitions. Include context like which onboarding flow was completed, time-to-activate, and which steps were skipped.

Frequently Asked Questions

Contact journey tracks individual people’s product engagement (Discovered through Inactive). Account billing tracks the commercial relationship (None through Churned). They’re independent — Jane can be Engaged while her company is on a free plan, or Inactive while her company is actively paying.
Activated is the main stage you instrument manually by calling user.activate(). Discovered and Signed Up are auto-detected by the browser SDK. Engaged and Inactive are auto-inferred from product activity. If Stripe is connected, billing statuses sync automatically; otherwise, set billing status manually with the customer billing methods.
No. Contacts progress forward through Discovered, Signed Up, Activated, and Engaged. The one exception is the Engaged ↔ Inactive cycle: inactive contacts automatically return to Engaged when they show new activity.

Next Steps

Identity Resolution

How Outlit connects anonymous visitors to known contacts

Server-Side Tracking

Track stage events from your backend

Browser Integration

Set up browser tracking

API Reference

Direct API for stage events