Section B · Technical core

Core Payments Fundamentals

The primitives every Payments PM should be able to whiteboard cold — issuer/acquirer/network/processor, auth vs settle, decline codes, 3DS, chargebacks, and why none of this is in your direct control.

The four-party model

For card payments — still the dominant fiat rail in most markets — the four-party model is the floor.

PartyRoleExample
CardholderThe consumer who initiates the paymentYour the company customer in São Paulo
IssuerThe bank that issued the card. Decides whether to approve.Itaú, Bradesco, HDFC, Lloyds
AcquirerThe bank that takes the merchant's side. Sends the request to the network.Adyen, Worldpay, Stone, Cielo
Network / schemeThe rails between issuer and acquirer.Visa, Mastercard, Amex, Elo, RuPay, Mada

A processor (also called a PSP — payment service provider) is the technology layer in front of the acquirer. Sometimes the same company is both (Stripe, Adyen). The gateway is the API surface; functionally often synonymous with processor.

Sound-checked phrasing

"Cardholder taps. PSP forwards to acquirer. Acquirer routes through network. Network reaches issuer. Issuer approves or declines. The same chain runs in reverse on settlement and on chargeback."

Authorization vs settlement — different events, different rails, different failure modes

Most PMs new to payments collapse these into "the payment." They are separate, and the distinction is in 80% of payments interview questions.

AuthorizationSettlement
WhenAt checkout / deposit timeLater — same day to T+2 typically
What it doesReserves funds; issuer says yes/noActually moves funds, issuer → acquirer → merchant
Reversible?Yes — auth can be voidedHarder — needs refund, not void
What you measureAuthorization rate (AAR)Settlement success, settlement speed
Where it failsSoft decline, hard decline, network timeoutAcquirer batch fail, FX issue, partner reconciliation gap

Real-time rails like UPI and PIX collapse the timeline — auth and settlement happen in seconds — but the two events still exist conceptually. Even on PIX you can have a successful auth-equivalent (PIX message accepted) and a later reconciliation failure.

Anatomy of a card payment — what's in the message

Any Payments PM should know the field-level vocabulary. You won't write ISO 8583 messages, but interviewers will use these terms.

TermWhat it is
PANPrimary Account Number — the full card number
BINBank Identification Number — first 6-8 digits of PAN, identifies the issuer
MCCMerchant Category Code — 4-digit code identifying merchant type (6051 = quasi-cash / crypto)
AVSAddress Verification Service — issuer checks billing address vs. submitted
CVV / CVCCard Verification Value — the 3-4 digit code
Network tokenA scheme-issued token replacing the PAN, lifecycle-managed by Visa/MC
3DS / 3DS23-D Secure — issuer-side strong customer authentication step (OTP, biometric)
SCAStrong Customer Authentication — PSD2 requirement in EU; 3DS2 is how you satisfy it

MCC 6051 is worth memorizing. It's the "quasi-cash" code many crypto purchases run under, and many issuers selectively block or step-up authenticate it. Half of crypto auth-rate work is about how your purchases get coded.

Decline codes & retry strategy

Not every decline is equal. Knowing the family matters because retry policy depends on the decline reason.

FamilyExamplesRetry behavior
Hard declineStolen card, lost, account closed, fraud-confirmedNever retry. Scheme rules prohibit.
Soft declineInsufficient funds, do-not-honor, generic declineRetry with backoff; consider rail switch
Issuer-side step-upAuthentication required (3DS)Don't retry — escalate to 3DS challenge
Network / systemTimeout, response code 91, unable to routeRetry quickly; prefer same rail
Velocity / riskIssuer suspects velocity attackWait, retry later, or switch BIN/rail

Smart retry is one of the most measurable AAR levers. A naïve retry-everything policy tanks AAR because schemes count repeat-on-hard-decline against you. See 06.

3DS2 and SCA — the step-up tax

3DS (3-D Secure) is the protocol that lets the issuer step the customer up for authentication mid-payment. 3DS2 (the current version) is smarter than 3DS1: it does risk-based authentication, often frictionless (no challenge to the user) when the issuer is confident.

Why a PM cares:

  • Liability shift. If 3DS succeeds and the txn is later disputed as fraud, liability moves from merchant to issuer.
  • Friction cost. Every challenge step-up adds dropout. PIN-OTP UX on a slow Indian network costs you points of conversion.
  • SCA mandate. In EU, PSD2 requires SCA for most txns; 3DS2 is the implementation. In emerging markets, 3DS requirement varies by scheme and country.
  • Exemptions. Low-value, recurring, trusted-beneficiary, and TRA (transaction risk analysis) exemptions exist. Knowing how to claim them is a real lever.

Chargebacks & the dispute lifecycle

A chargeback is when the cardholder disputes a transaction with their issuer. The funds reverse out of the merchant. The lifecycle:

  1. Retrieval request — issuer asks merchant for evidence (sometimes skipped).
  2. Chargeback filed — funds pulled; merchant has a window to respond.
  3. Representment — merchant submits evidence to defend.
  4. Pre-arbitration / arbitration — if issuer disputes the representment.
  5. Final ruling — scheme decides.

Scheme thresholds matter: Visa's VDMP (Visa Dispute Monitoring Program) flags merchants above ~0.9% dispute rate. Above scheme thresholds you face fines, then de-platforming. For crypto, dispute rates historically run hot — managing them is core PM work.

Bank-rail primitives (the non-card world)

Card is one rail. Bank rails — wires, ACH, faster-payments — are the other floor. Quick reference:

RailGeographySpeedReversibility
SWIFT wireGlobalHours-daysLimited; manual
ACHUSSame-day to 2 daysR-codes; ~60 days
SEPA Credit TransferEU/EEA1 business dayRecall available
SEPA Instant (SCT Inst)EU/EEA~10 secondsVery limited
FPS (Faster Payments)UK~SecondsVery limited
UPIIndia~SecondsDispute via NPCI
PIXBrazil~SecondsMED return window
FedNow / RTPUS~SecondsVery limited

The unifying pattern: real-time / instant rails are fast and irreversible. That irreversibility is a fraud and recovery problem for you. See 08-error-handling.

Why payments PM is uniquely vendor-dependent

Almost every modern PM job has dependencies. Payments has capabilities-as-a-vendor in a way few others do.

  • You don't own the rails. Visa, NPCI, BACEN do. You consume them through licensed acquirers.
  • You don't own the auth decision. The issuer does.
  • You don't own your uptime. Your PSP, your acquirer, your bank partner all stand in front of you.
  • You don't fully own your cost. Interchange and scheme fees move by category and region; FX spreads move by counter-party.
  • You don't fully own your roadmap. If your PSP doesn't ship a feature, you can't ship it either, unless you change PSPs.

The senior posture: treat vendor management as primary PM craft, not as side admin. Most of your leverage is in partner selection, partner SLAs, and partner cadence. See 05-deep-dive-secondary.

A single-page mental model

If you can answer these five questions cold, you have the floor:

  1. What's the difference between auth and settle, and where can each fail?
  2. What does a BIN tell you, and how would you use it in product?
  3. Why is retry-on-hard-decline forbidden, and what's the alternative?
  4. What's the liability shift in 3DS, and when wouldn't you want it?
  5. Why is instant-rail fraud different from card fraud?

If any of these are fuzzy, return here before the loop.