---
title: "The 'At-Risk' Account Alert"
url: https://stacklist.com/card/a9df49e9-0b83-4539-8724-eb4ea16b8964
source_url: "https://sixtysixten.com/playbooks/at-risk-account-alert/"
stack: https://stacklist.com/stack/18235203-63f9-465e-8365-e30db741ed8b
summary: "At-Risk Account Alert Playbook is a comprehensive framework for monitoring customer health signals across product usage, engagement, support, and payment behavior to identify early churn warning signs. It provides step-by-step workflows for building health score models, defining risk signals, and implementing automated alerts to enable proactive customer retention interventions."
tags: "churn-prediction, customer-success, account-health, risk-detection, playbook, retention, automation"
key_entities: "health-score-model (concept), churn-prediction (concept), risk-signal-detection (concept), ChurnZero (technology), Gainsight (technology), Mixpanel (technology), Amplitude (technology), Slack (technology), Customer Success teams (organization), account-health-monitoring (concept)"
classification: "framework"
content_hash: "sha256:55ef77ae855d11009fbcf94e76498c4c880668aa5eb53978050e1f0326fadc5e"
acp_version: "0.2"
token_counts_approximate: 2761
visibility: public
agent_accessible: true
status: "final"
---

# The 'At-Risk' Account Alert

Overview What It Is The At-Risk Account Alert monitors customer health signals across multiple dimensions—product usage, engagement, support interactions, and payment behavior—to identify accounts showing early warning signs of churn. When risk thresholds are crossed, it alerts the CS team with a diagnosis and recommended save actions. Why It Matters Churn is rarely sudden. Customers give signals weeks or months before they leave—declining usage, missed meetings, support escalations. Early detection gives you time to intervene. A 10% improvement in churn prediction can translate to millions in retained revenue. Who It&#039;s For Customer Success teams managing account health Account Managers with renewal responsibility CS leaders focused on retention RevOps teams building health scores Preconditions Required Tools Customer Success platform (ChurnZero, Gainsight, Vitally) Product analytics (Mixpanel, Amplitude, Pendo) Support ticketing system (Zendesk, Intercom) CRM with account/opportunity data Slack for alerts Required Fields/Properties Product usage metrics (DAU, feature adoption, sessions) Engagement data (email opens, meeting attendance) Support ticket volume and sentiment Payment/billing status Contract value and renewal date Definitions Required Health score components and weights Risk threshold definitions What constitutes &#x27;declining usage&#x27; Escalation path for high-risk accounts Save playbook by risk type Step-by-Step Workflow 1 Define Health Score Model Goal: Create a composite score that predicts churn. Actions: Identify leading indicators of churn from historical data Weight factors by predictive power Define score thresholds (healthy, warning, critical) Validate against historical churn data Set up real-time score calculation Implementation Notes: Start simple—3-5 factors. Complexity doesn&#039;t equal accuracy. Usage decline is almost always the strongest signal. Validate your model against actual churn before trusting it. Automation Logic: Copy Health Score Model (Example): 1. PRODUCT ENGAGEMENT (40%) - Daily/Weekly Active Users vs. baseline - Feature adoption breadth - Key action completion - Login frequency trend 2. RELATIONSHIP HEALTH (25%) - Meeting attendance rate - Email response rate - Executive engagement level - NPS/CSAT scores 3. SUPPORT EXPERIENCE (20%) - Open ticket count - Ticket sentiment trend - Time to resolution - Escalation frequency 4. BUSINESS SIGNALS (15%) - Payment status - Contract utilization - Expansion vs. contraction requests - Renewal timeline proximity Score Thresholds: - 80-100: Healthy (green) - 60-79: Monitor (yellow) - 40-59: At-Risk (orange) - 0-39: Critical (red) 2 Build Risk Signal Detection Goal: Identify specific events that indicate risk. Actions: Define discrete risk events (not just score) Set detection logic for each signal Configure composite triggers (multiple signals) Build signal confidence scoring Test against known churned accounts Implementation Notes: A health score dropping is one thing; knowing WHY is another. Discrete signals like &#039;champion left&#039; or &#039;usage dropped 50%&#039; are more actionable than a number. Automation Logic: Copy // Example: Risk signal definitions const riskSignals = [ { name: &#039;usage_decline&#039;, trigger: (account) =&gt; { const current = account.usage_30d; const previous = account.usage_60_30d; return current / previous &lt; 0.7; // 30%+ decline }, severity: &#039;high&#039;, weight: 3 }, { name: &#039;champion_departed&#039;, trigger: (account) =&gt; account.champion_left_recently, severity: &#039;critical&#039;, weight: 5 }, { name: &#039;support_escalation&#039;, trigger: (account) =&gt; account.escalated_tickets &gt; 0, severity: &#039;high&#039;, weight: 3 }, { name: &#039;missed_meetings&#039;, trigger: (account) =&gt; account.missed_qbr || account.no_shows_last_30d &gt;= 2, severity: &#039;medium&#039;, weight: 2 }, { name: &#039;payment_issue&#039;, trigger: (account) =&gt; account.payment_failed || account.invoice_overdue_days &gt; 30, severity: &#039;high&#039;, weight: 4 } ]; 3 Create Alert Automation Goal: Notify the right people when risk is detected. Actions: Configure alert triggers by threshold and signals Route to appropriate owner (CSM, manager, exec) Include context and recommended actions Set alert frequency (avoid spam) Enable acknowledgment and action tracking Implementation Notes: Don&#039;t alert on every score fluctuation. Alert on meaningful thresholds crossing or multiple signals firing. One well-crafted alert beats ten noisy ones. 4 Build Save Playbooks Goal: Give CSMs specific actions for each risk type. Actions: Create playbooks by risk signal type Include talk tracks for common situations Define escalation paths Build re-engagement email sequences Track playbook effectiveness Implementation Notes: A risk alert without a save playbook just creates anxiety. Every alert should answer: &#039;Here&#039;s what to do.&#039; Match playbooks to specific signals. 5 Implement Tracking and Iteration Goal: Measure effectiveness and improve the model. Actions: Track alert-to-save conversion Measure false positive rate Compare predicted vs. actual churn Refine weights based on outcomes A/B test save playbooks Implementation Notes: Your model will be wrong at first. The goal is to be less wrong over time. Track every prediction against reality and adjust. Templates At-Risk Alert Message Copy 🚨 *AT-RISK ACCOUNT ALERT* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ **Account:** {{company_name}} **ARR:** {{arr}} | **Renewal:** {{days_to_renewal}} days **CSM:** {{csm_name}} **Health Score:** {{health_score}}/100 ({{score_change}} from last week) **Risk Level:** {{risk_level}} 🔴 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ## 🚩 Risk Signals Detected {{#each risk_signals}} **{{signal_name}}** ({{severity}}) {{description}} {{/each}} ## 📉 Key Metrics | Metric | Current | 30d Ago | Change | |--------|---------|---------|--------| | DAU | {{dau_current}} | {{dau_30d}} | {{dau_change}}% | | Logins | {{logins_current}} | {{logins_30d}} | {{logins_change}}% | | Support Tickets | {{tickets_open}} | {{tickets_30d}} | {{tickets_change}} | ## 🎯 Recommended Actions {{#each recommended_actions}} {{number}}. {{action}} {{/each}} &lt;{{account_link}}|View Account&gt; | &lt;{{playbook_link}}|Save Playbook&gt; | &lt;{{schedule_link}}|Schedule Call&gt; *Alert triggered: {{timestamp}}* Weekly At-Risk Summary Copy 📊 *WEEKLY AT-RISK SUMMARY* {{week_of}} ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ **Portfolio Health Overview** - 🟢 Healthy: {{healthy_count}} accounts ({{healthy_arr}}) - 🟡 Monitor: {{monitor_count}} accounts ({{monitor_arr}}) - 🟠 At-Risk: {{at_risk_count}} accounts ({{at_risk_arr}}) - 🔴 Critical: {{critical_count}} accounts ({{critical_arr}}) **This Week&#039;s Movement** - ⬆️ Improved: {{improved_count}} accounts - ⬇️ Declined: {{declined_count}} accounts - 🆕 New at-risk: {{new_risk_count}} accounts ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ## 🚨 Priority Accounts (Top 5 by Risk) {{#each priority_accounts}} **{{rank}}. {{company_name}}** | {{arr}} Score: {{score}}/100 | Signals: {{signal_summary}} CSM: {{csm_name}} | Renewal: {{renewal_date}} {{/each}} ## 📈 Save Success This Week - Accounts saved: {{saves_count}} - ARR protected: {{arr_saved}} - Avg. time to intervention: {{avg_intervention_days}} days &lt;{{dashboard_link}}|Full Dashboard&gt; Save Playbook - Usage Decline Copy ## Save Playbook: Usage Decline **Trigger:** Product usage dropped 30%+ over 30 days ### Immediate Actions (Day 1-3) 1. **Check for technical issues** - Review support tickets for blockers - Check for failed integrations or syncs - Verify no access/login problems 2. **Reach out to champion** - Use the re-engagement template below - Offer value (not &#039;checking in&#039;) - Propose a quick health check call ### Re-Engagement Email Subject: Quick check-in on {{company_name}}&#039;s {{product}} usage Hi {{first_name}}, I noticed your team&#039;s usage of {{key_feature}} has slowed down recently. I wanted to reach out to make sure everything&#039;s working as expected. A few things that might help: - {{relevant_tip_1}} - {{relevant_tip_2}} - {{new_feature_mention}} Would you have 15 minutes this week for a quick sync? I&#039;d love to share some insights from similar customers who&#039;ve been successful with {{use_case}}. [Book time here: {{scheduling_link}}] Best, {{csm_name}} ### Escalation Triggers - No response in 5 days → Manager escalation - Usage drops further → Executive outreach - Champion unreachable → Map new contacts Health Score Components Copy | Component | Weight | Healthy | Warning | Critical | Data Source | |-----------|--------|---------|---------|----------|-------------| | Daily Active Users | 25% | &gt;80% of seats | 50-80% | &lt;50% | Product analytics | | Feature Adoption | 15% | &gt;5 features | 3-5 | &lt;3 | Product analytics | | Meeting Attendance | 15% | &gt;80% | 50-80% | &lt;50% | Calendar | | Email Response Rate | 10% | &lt;24h avg | 24-72h | &gt;72h | Email | | Support Sentiment | 15% | Positive | Neutral | Negative | Support platform | | Payment Status | 10% | Current | 1-30 days late | &gt;30 days | Billing | | NPS Score | 10% | 9-10 | 7-8 | &lt;7 | Surveys | QA + Edge Cases Test Cases Checklist Usage drops 30% → at-risk alert fires within 24 hours Champion marks as &#x27;left company&#x27; → critical alert with save playbook Multiple low-severity signals → composite alert triggered Account score drops from 80 to 55 → alert sent to CSM and manager Save actions taken → tracked and attributed to intervention Common Failure Modes Alert fatigue: Too many alerts desensitize the team. Tune thresholds aggressively and use tiered severity. False positives: Alerting on accounts that were never at risk. Validate model against historical churn before trusting it. Missing data: Health scores inaccurate due to incomplete data. Identify gaps and fix integrations before launch. No save capacity: CSMs too busy to act on alerts. Build triage process and executive escalation for highest-value accounts. Troubleshooting Tips If too many false positives: Raise thresholds or add confirming signal requirements If missing churns: Lower thresholds or add new leading indicators If alerts ignored: Simplify format, reduce frequency, add manager visibility If save rate is low: Review playbooks, train team, add resources for at-risk accounts KPIs and Reporting KPIs to Track Churn Prediction Accuracy: &gt;75% of critical alerts result in churn if unaddressed Save Rate: &gt;60% of at-risk accounts saved after intervention Time to Intervention: Action taken within 48 hours of alert False Positive Rate: &lt;20% of alerts are false positives ARR Protected: Track total ARR saved through interventions Suggested Dashboard Widgets Portfolio Health Distribution: Accounts by health score band At-Risk Account List: Sortable list with key metrics and actions Risk Signal Frequency: Which signals fire most often Save Rate by CSM: Intervention success by team member
