Ai And Automation 7 min read

Authorization Optimization: The Hidden Margin in Card Acceptance

A 1% auth rate uplift on $1B GMV recovers $10M in revenue. Most merchants leave this on the table. Network tokens, intelligent retries, BIN routing, and soft-decline recovery are where the money is — here's how to capture it.

PB
By Shaun Toh
TL;DR

A 1% auth rate uplift on $1B GMV = $10M recovered. Key levers: network tokenization (+2.5% uplift), intelligent retry timing by decline code, BIN-level acquirer routing, and 3DS2 soft-decline recovery. Most merchants aren't pulling any of them.

Most merchants optimizing payment performance focus on interchange costs and fraud rates. These are real costs worth managing. But the single largest recoverable revenue opportunity in card acceptance is one that rarely appears on the finance team’s dashboard: authorization rate.

At $1 billion in annual card GMV with an 87% auth rate, a merchant is losing $130M in attempted transactions annually. Not all of that is recoverable — some declines are genuine fraud or genuinely insufficient funds — but industry data consistently shows that 2-4% of all card declines on consumer cards are false declines: legitimate transactions incorrectly rejected by the issuer. That’s $20-40M in revenue that processed correctly at competitors.

A 1% auth rate improvement on $1B GMV recovers $10M in net revenue. The levers exist. Most operators aren’t pulling them.

Why Auth Rates Are Where They Are

The industry average card-not-present authorization rate sits around 85-87%. Premium operators — Shopify, Amazon, Booking.com — achieve 92-95%. The delta is not primarily fraud rate differences. It’s infrastructure, configuration, and the application of specific techniques that most mid-market merchants haven’t implemented.

Understanding why transactions decline is the prerequisite to improving the rate. Declines fall into three categories with very different response strategies:

Hard declines. The card is stolen, the account is closed, the BIN is blocked — the issuer is not going to approve this transaction under any circumstances. Retrying is a waste of processing cost and adds to false positive fraud signals. Response: abandon and do not retry.

Soft declines. The issuer declined for a reason that may change: “do not honour” (catch-all for issuer preference), “insufficient funds” (may resolve), “transaction not permitted” (often a control setting on the card that can be addressed via different presentation). Soft declines represent the bulk of the recoverable opportunity. Response: retry with strategy, not immediately.

Technical declines. Processing timeout, network unavailability, system error — not a cardholder or issuer problem. Response: retry immediately via a different routing path.

Most payment processors return decline reason codes that distinguish these categories. Most merchants don’t act on them differently.

Network Tokenization: The Highest-Impact Single Lever

Tokenization at the network level — replacing a PAN (Primary Account Number) with a network-issued token via Visa Token Service (VTS) or Mastercard Digital Enablement Service (MDES) — consistently delivers 2-4% auth rate uplift. The mechanism is structural:

Token survival across card reissues. When a physical card is reissued (expiry, lost/stolen replacement), a PSP-stored PAN becomes invalid. A network token, issued against the account rather than the card, remains valid. For subscription merchants, this alone eliminates a category of declines: “card expired” soft declines that occur because a cardholder got a new card and hasn’t updated their payment details. Stripe’s published data shows network tokenization delivers approximately +2.5% authorization rate uplift on average, with subscription and recurring merchants seeing higher uplifts.

Richer issuer context. Network tokens carry additional data fields — merchant identity, transaction context, device assurance level — that PANs don’t. Issuers use this context in their authorization decisions. A token presented with confirmed merchant domain context and a known device assurance level gets treated differently from a raw PAN presented with no context.

Frictionless 3DS pathway. 3DS2 frictionless flow — where the issuer approves authentication without presenting a challenge to the cardholder — has higher success rates on network-tokenized transactions because the additional context reduces the issuer’s uncertainty.

Implementation: network tokenization is available through major PSPs (Stripe, Adyen, Braintree) either automatically or via API configuration. If your PSP uses their own proprietary token vault rather than VTS/MDES, you’re not getting the auth rate benefit — this is worth verifying and, if necessary, switching to a PSP that supports network tokenization.

Intelligent Retry Logic

The most common retry mistake is immediate retry on a soft decline. When an issuer declines with “do not honour,” retrying the same transaction on the same card from the same merchant within minutes signals either a technical error or an attempt to circumvent a fraud control. The issuer declines again, and may also apply a velocity flag that makes subsequent attempts harder.

Intelligent retry logic has three components:

Wait strategy by decline code. “Insufficient funds” declines resolve most frequently 24-48 hours after the initial decline (payday cycles, daily spending limits resetting). “Do not honour” declines resolve more frequently after 3-7 days. Some PSPs and retry optimization tools (Spreedly, Recurly Revenue Recovery, Chargebee SmartRetry) publish decline-code-specific retry timing based on aggregate data across their transaction volumes. Using these timing curves rather than fixed intervals meaningfully improves retry success rates.

Account updater before retry. Visa Account Updater (VAU) and Mastercard Automatic Billing Updater (ABU) allow merchants to query whether a stored card number has been replaced. Querying VAU/ABU before retrying a declined transaction, and updating credentials if a new card number is found, eliminates the “card no longer valid” category of retry failures. This is particularly impactful for subscription merchants with stored credentials.

Acquirer routing on retry. Some merchant-acquirer relationships have different decline-to-approval rates for specific BIN ranges. Retrying a declined transaction through a different acquirer — if you have multi-acquirer relationships — can materially improve retry success because the routing path changes and the second authorization attempt doesn’t carry the context of the first decline.

BIN-Level Routing

Authorization rates vary significantly by BIN (Bank Identification Number — the first 6-8 digits of a card identifying the issuing bank) and by the routing path from merchant to acquirer to issuer.

Direct acquirer-to-issuer relationships — where an acquirer has a bilateral connection to an issuer rather than routing through an intermediate correspondent — typically deliver 1-2% higher auth rates on affected BINs, because direct connections are faster (lower latency reduces timeout-related declines), carry richer transaction context, and benefit from bilateral relationship-based approval preferences.

Merchants processing above $50M annually benefit from maintaining 2+ acquirer relationships specifically for BIN-level routing optimization. Route domestic BINs to the domestic acquirer, international BINs to the international acquirer with the best issuer relationship for that geography. Both Adyen and Stripe offer intelligent routing features that automate this — understanding what signals they use enables better manual override configuration.

Soft Decline Recovery via 3DS2

Many issuers who decline a standard CNP authorization will approve the same transaction when presented via 3DS2 frictionless authentication. The authentication provides a liability shift that makes the issuer more willing to approve. This creates an optimization path: on soft declines where retry is appropriate, retry with a 3DS2 authentication request rather than a standard auth request.

The retry-with-3DS flow: receive soft decline → initiate 3DS2 authentication request → if frictionless authentication succeeds, submit authorization with authentication data → authorization approved at higher rate. The implementation requires your PSP or 3DS service provider to support the retry pathway. Adyen and Stripe Radar both implement this natively.

The limitation: if the cardholder is required to complete a 3DS challenge, the retry becomes friction. The optimal application is on high-value transactions for known customers — where 3DS frictionless rates are high — rather than on anonymous one-time transactions.

Measurement: What Most Operators Get Wrong

“Authorization rate” is often reported as a single number that obscures the pattern. A 90% authorization rate that averages a 96% rate on debit and an 84% rate on credit is a different problem from a 90% rate that’s uniform across card types.

The instrumentation that enables optimization:

Segment by decline reason code. Not just approved vs declined, but the distribution of decline codes. “Insufficient funds” concentration suggests a demographic mismatch or subscription timing problem. “Do not honour” concentration suggests generic issuer friction that improves with tokenization and 3DS. “Card expired” concentration is solved entirely by account updater.

Segment by card type. Debit vs credit, premium vs standard, domestic vs international issuers. Different segments have different baseline auth rates and respond differently to optimization levers.

Measure retry conversion separately. Your first-attempt auth rate and your final auth rate (after all retries) are different numbers. Knowing the delta and what drove retry approvals identifies which retry strategies are working.

Track false decline rate. The hardest metric to measure directly — you can’t know for certain that a declined transaction was legitimate — but can be estimated from chargeback rate comparison (merchants with high false decline rates tend to have lower chargeback rates, because they’re declining too aggressively) and from cardholder contact rates.

The merchants systematically outperforming on auth rates are the ones who’ve built dashboards that surface these segments daily, not the ones who check a single auth rate percentage monthly. Authorization optimization is continuous, not a one-time project — issuers update their models, card portfolios turn over, fraud patterns shift. The optimization compounds over time for operators who treat it as an ongoing discipline.

Shaun Toh By Shaun Toh · Director, Digital Payments · Razer

Related briefings