Player & Activity Metrics B02 / 10

Reactivated Player in iGaming: Definition, Formula and Why Operators Track It Separately From Active Players

A Reactivated Player is one who was previously active, became dormant for a defined period and has now returned to active status. Reactivation is the third source of active players (after acquisition and continued retention) and one of the cheapest in CPA terms. Operators that…

iGaming Glossary · Category: Player & Activity Metrics · Relevant for: CRM, Marketing, Finance, Executive

iGaming GlossaryCRMMarketingFinanceExecutive

TL;DR

A Reactivated Player is one who was previously active, became dormant for a defined period and has now returned to active status. Reactivation is the third source of active players (after acquisition and continued retention) and one of the cheapest in CPA terms. Operators that conflate reactivation with retention or acquisition lose visibility into which growth lever is actually working.

Mechanics 02

Formula

In its simplest form:

Reactivated Player = Player active in current period AND previously active AND inactive for ≥ X days before becoming active again

X is the dormancy threshold: how long a player must have been inactive to count as reactivated rather than retained. Common thresholds are 30, 60 or 90 days. The choice of X has large effects on the metric and must be applied consistently.

A typical warehouse-level aggregation:

Warehouse-level aggregationWITH activity AS (
SELECT player_id, MAX(bet_date) AS last_bet_before
FROM bets
WHERE bet_date < :period_start
AND bet_status = 'settled'
GROUP BY player_id
),
current AS (
SELECT DISTINCT player_id
FROM bets
WHERE bet_date BETWEEN :period_start AND :period_end
AND bet_status = 'settled'
)
SELECT COUNT(*) AS reactivated
FROM current
JOIN activity USING (player_id)
WHERE :period_start - activity.last_bet_before
>= INTERVAL '60 days';
Business context 03

Why it matters in iGaming

Active players in any given period come from three sources: new acquisitions (FTDs in the period), retained players (who were also active in the previous period) and reactivated players (who were dormant before returning). These three sources have very different unit economics. Acquisition typically costs the most per player. Retention is essentially free. Reactivation sits between, with relatively low per-player cost but specific operational tooling to drive it.

Different teams read reactivation differently:

  • CRM uses reactivation rate as the primary measure of win-back programme effectiveness.
  • Marketing tracks reactivation cost (campaign spend over reactivated players) as a CPA equivalent for win-back campaigns.
  • Finance models reactivated revenue separately from new acquisition revenue and retained revenue, because the cost structures and forward-looking value differ.
  • Executives watch the share of period actives that came from reactivation as a signal of programme maturity.

The strategic insight: a healthy operator typically has a meaningful share of period actives coming from reactivation, not just from continuing retention or new acquisition. An operator with very low reactivation either is not running win-back programmes or is running them poorly. An operator with very high reactivation may be over-discounting to bring back churned players.

Failure modes 04

Common mistakes and how teams get reactivation wrong

Conflating reactivation with retention. A retained player was active last period and is still active this period. A reactivated player was dormant for an extended window and has now returned. Mixing them in one number hides which growth lever is working.

Inconsistent dormancy threshold. If CRM uses 30-day dormancy and Finance uses 90-day dormancy, the two teams literally count different events. The fix is one shared threshold for the headline metric, with optional variants for specific use cases.

Counting reactivation revenue against fresh acquisition CPA. Reactivation revenue and acquisition revenue have different cost structures. Mixing them in one return-on-spend number hides whether each programme is independently profitable.

Treating one-bet returns as full reactivation. A player who returns for a single small bet and goes dormant again is technically reactivated but rarely produces meaningful value. Quality reactivation tracking includes follow-on activity, not just the return event itself.

Forgetting to net reactivation against re-churn. Reactivated players churn faster than retained players on average. Operators that report gross reactivation without netting near-term re-churn overstate the durability of reactivation programmes.

What good looks like 05

Healthy ranges and benchmarks

Reactivation share of total active varies by operator maturity and CRM sophistication. Directional patterns:

  • Mature operators with established CRM programmes typically draw a meaningful share of period actives from reactivation, often in the high single digits to low double digits as a percentage of total active.
  • Operators with weak CRM tooling or no win-back programmes show very low reactivation contribution, with most period actives split between retention and fresh acquisition.
  • Reactivated players tend to churn faster than retained players, with the difference narrowing the longer they stay reactivated.
  • Reactivation rates among VIP segments are typically higher than among casual segments, because VIPs have more lifetime value at stake and respond to more sophisticated win-back offers.

These are directional patterns based on industry observation, not strict benchmarks. The most useful comparisons are within an operator over time and across reactivation programmes.

Gamblitude 07

How Gamblitude handles reactivation

In Gamblitude, reactivated players are tracked as a governed segment with explicit dormancy thresholds. The semantic layer separates Active Players into three components (New, Retained, Reactivated) with consistent definitions across CRM, Marketing and Finance. Reactivation is supported as a player Attribute, available for Lists, Reports and AI Agent answers. CRM teams use it as the trigger for differentiated lifecycle treatment, since reactivated players need different onboarding-style flows than continuing retained players.

The Predictive Churn Score also feeds reactivation strategy: players flagged as high-risk-of-churn become the priority target for retention work, while players already in the dormant pool become the priority target for win-back campaigns. The same model output drives different operational responses depending on player state.

Explore the BI platform ↗
Questions 08

FAQ

A retained player was active in the previous period and is still active in the current one. A reactivated player was dormant for an extended window (typically 30, 60 or 90 days) and has now returned to active status. The two have different cost structures, different forward-looking value and benefit from different operational programmes.

The most common defaults are 30 days (aggressive, picks up short-term lapses), 60 days (balanced, the most widely used CRM default) or 90 days (conservative, only counts genuine churn-then-return). Most operators settle on 60 or 90 days for the headline metric, with 30 days as a complementary view for early intervention triggers.

Yes, reactivation revenue is real revenue. The metric question is not whether it counts in NGR but whether it is reported separately from acquisition NGR and retained NGR. Most mature operators report all three as components of total NGR for proper attribution analysis.

Yes. A player can churn, reactivate, churn again and reactivate again. Each reactivation event is a separate operational success and should be tracked as such. Players with multiple reactivation cycles are a distinct CRM segment that often warrants specific lifecycle treatment.

Reactivated players typically have a known prior LTV pattern, which makes their forward-looking value more predictable than fresh acquisitions. They tend to have shorter forward LTV than retained players (because they have already shown propensity to churn) but lower acquisition cost than new players. The unit economics often favour reactivation as a growth lever when the dormant pool is large.

Explore next 09

Further reading

Keep the glossary useful

Found a mistake or want a term added to the iGaming Glossary? Let us know.

Browse the complete glossary or see how governed definitions work across dashboards, reports, alerts and AI answers.