So what is cascading in payments, exactly? It is the second step after routing. Routing decides which acquirer or payment method gets the first attempt at a transaction. Cascading decides what happens if that first attempt comes back declined: whether the decline is eligible for a retry, and if so, which acquirer gets the next attempt.
Cascading only fires on eligible declines, where scheme rules and the decline reason allow it — a fraud flag or a closed account is never re-attempted, no matter how the routing rules are set.
Routing vs cascading
Routing and cascading are often described together, but they answer different questions.

Routing
Decides where a payment goes first, based on signals such as card type, currency, amount or issuer history.

Cascading
Only comes into play once that first attempt fails: it decides whether the decline is worth retrying, and where the retry should go.
A platform can have smart, signal-based routing with no cascading on top, or it can run cascading over a simple, non-adaptive routing setup, though most orchestration setups run both together.
Which declines are eligible for cascading
Not every decline is a candidate for cascading.
Eligible declines — where scheme rules and the decline reason allow a retry — are typically temporary issuer issues, generic soft declines, and technical timeouts: cases where the same card, tried again or tried through a different acquirer, could plausibly go through.
Retry-conditional cases, where a plain resend won't help but the retry can succeed once one parameter changes, such as routing through an acquirer with a different MCC classification.
Declines tied to fraud flags, closed accounts, or other hard-decline reasons are excluded on purpose. Retrying those does not recover a sale; it just repeats a result that was never going to change.
How a cascade retry works

Eligible decline comes back
An eligible decline comes back — one where scheme rules and the reason code allow a retry.
→

Retry the next acquirer
The platform sends the same payment to
the next acquirer on its routing table, inside a short window, carrying forward context such as the original transaction reference and the 3-D Secure/SCA authentication result — so the retry does not re-trigger authentication or break the fraud-liability shift, and is not mistaken for a brand-new, unrelated charge.
→

Repeat up to the limit
If that attempt is also declined for an eligible reason, the platform can try the next route, up to whatever limit the merchant's rules allow. The shopper sees one payment attempt; the retries happen behind it.
The blind-retry trap
The most common failure mode here is what is usually called a blind retry: re-attempting every decline, regardless of the reason code, instead of only the eligible ones. A blind retry can buy a short-term bump in approvals, but it also resends payments that were declined for fraud or account reasons, which tends to push chargebacks up over time. Well-built cascading logic treats the decline reason as a gate, not a formality, precisely to avoid trading a small short-term lift for a longer-term chargeback problem.
Cascading inside an orchestration platform
Cascading is rarely built as a standalone tool. It normally lives inside a payment orchestration platform, alongside the smart routing that picks the first attempt and the reporting that shows which routes and decline reasons are actually recurring. A deeper, example-led walkthrough of a cascade retry is in Payment Cascade Routing: How Smart Retries Recover Declined Payments.