PATTERN Cited by 1 source
Preemptive refund on early fraud warning¶
Pattern¶
When a fraud-detection system predicts that a transaction is likely to trigger an early fraud warning (EFW) from the card network, the merchant refunds the transaction proactively — accepting guaranteed revenue loss to avoid the larger combined cost of:
- Chargeback fees (charged in addition to the transaction reversal).
- Dispute-rate degradation (excessive chargeback rates trigger card-network sanctions: monitoring programs, fines, processing-privilege loss).
- Operational dispute-handling cost (evidence assembly, submission, network response time).
The pattern requires predicting the EFW before it fires — the EFW itself is already a signal the cardholder is flagging fraud, and a chargeback typically follows within days.
Canonical wiki instance¶
systems/stripe-radar at 2026-05-27 (sources/2026-05-27-stripe-expanding-stripe-radar-to-protect-more-of-your-business):
"Stripe can now identify whether a payment is likely to trigger an early fraud warning from the card network. You can then choose to proactively refund the transaction and protect your dispute rate."
Distributed via concepts/multiprocessor-fraud-signal-export — the prediction is exported as a B2B API for use even on non-Stripe-processed transactions.
Why this works¶
The cost asymmetry is large:
- Refund cost = transaction value (full revenue loss for one transaction).
- Chargeback cost = transaction value + chargeback fee ($15-$50) + dispute-rate impact (potential downstream sanctions affecting other transactions) + operational cost.
For high-fraud-likelihood transactions, the merchant's expected loss is lower under preemptive refund than under contest-the-chargeback. The pattern is a form of insurance where the merchant pays the full claim to avoid amplified downstream costs.
Lead-time requirement¶
The pattern is only useful when the prediction lead time is meaningful:
- If Radar predicts the EFW only seconds before it fires, the merchant has no operational window to refund.
- If Radar predicts the EFW days before, the merchant can refund preemptively and the cardholder may not even file a dispute (since the charge no longer exists).
Lead time is undisclosed in the canonical instance.
Related action patterns¶
- Gather evidence — alternative response on fraudulent dispute signals (different downstream outcome).
- Adjust dispute strategy — feed the prediction into Smart Disputes for evidence-tailoring.
- Block the transaction — alternative for in-flight predictions; this pattern operates post-authorisation.
Caveats¶
- False-positive cost is high — a preemptive refund on a legitimate transaction loses revenue that would otherwise have been retained.
- Model precision/recall envelope undisclosed.
- Customer-experience implication — preemptive refund surprises the cardholder, who may contact the merchant expecting the goods/service.
- Lead-time of Radar's prediction vs the card-network's EFW not disclosed.
Seen in¶
- sources/2026-05-27-stripe-expanding-stripe-radar-to-protect-more-of-your-business — canonical wiki instance.
Related¶
- concepts/early-fraud-warning — the signal this pattern preempts.
- concepts/multiprocessor-fraud-signal-export — the B2B surface enabling cross-processor application.
- systems/stripe-radar — system emitting the prediction.