AnyLearn
All lessons
Businessintermediate

Authorization, Clearing, Settlement: The Three Clocks of a Payment

The tap is instant; the money is not. A card payment runs on three separate clocks: authorization in about a second, clearing in overnight batches, settlement as netted bank transfers. This lesson walks the message flow, explains holds and why they linger, shows why refunds are slow when charges are fast, and follows one transaction through all three phases.

Updated · AI-authored, review-gated · how lessons are made

Not signed in: your progress and quiz score won't be saved.
Progress1 / 8

Three phases, three speeds

Every card payment passes through three phases, and each runs on its own clock.

PhaseWhat movesTypical speed
AuthorizationA question and an answer: can this cardholder pay?About a second, real time
ClearingThe transaction's full details, submitted for paymentBatches, usually overnight
SettlementActual money between banks, nettedNext business day or two

The phases exist because they optimise for different things. Authorization optimises for latency: the cardholder is standing at the till. Clearing optimises for completeness: the exact final amount, with all data attached. Settlement optimises for efficiency: rather than millions of tiny transfers, banks exchange one netted position each.

Almost every confusing behaviour of card payments, from holds that linger to refunds that crawl, is one of these clocks showing through.

Full lesson text

All 8 steps on one page, for reading, reference, and search.

Show

1. Three phases, three speeds

Every card payment passes through three phases, and each runs on its own clock.

PhaseWhat movesTypical speed
AuthorizationA question and an answer: can this cardholder pay?About a second, real time
ClearingThe transaction's full details, submitted for paymentBatches, usually overnight
SettlementActual money between banks, nettedNext business day or two

The phases exist because they optimise for different things. Authorization optimises for latency: the cardholder is standing at the till. Clearing optimises for completeness: the exact final amount, with all data attached. Settlement optimises for efficiency: rather than millions of tiny transfers, banks exchange one netted position each.

Almost every confusing behaviour of card payments, from holds that linger to refunds that crawl, is one of these clocks showing through.

2. Authorization: one second, five hops

The authorization message is a small, structured request that crosses the whole four-party model and comes back, in roughly the time it takes to read this sentence.

The terminal or checkout builds the request: card credentials, amount, merchant identity, and context like whether the card was present. The acquirer forwards it to the network; the network reads the bank identification number and routes to the issuer.

The issuer does the real work in tens of milliseconds: is the card valid and not reported stolen, is there available balance or limit, does the fraud model like this transaction, do any rules like spending controls apply. It answers with an approval code or a decline reason, and the answer retraces the path.

Approved does not mean paid. It means the issuer has reserved the amount against the cardholder's available balance and promised to honour a matching clearing record when it arrives.

sequenceDiagram
participant M as Merchant terminal
participant A as Acquirer
participant N as Network
participant I as Issuer
M->>A: Authorization request
A->>N: Forward
N->>I: Route by card number
I->>I: Checks: validity, funds, fraud
I->>N: Approve, hold placed
N->>A: Approve
A->>M: Approved in about a second

3. Holds, and why they outlive the purchase

The hold placed at authorization is a reservation, not a debit. It reduces the cardholder's available balance immediately, but nothing has been charged. The charge happens only when a clearing record arrives and is matched against the hold.

That matching step is where everyday oddities come from:

  • The vanishing hotel hold. Hotels and fuel pumps authorize an estimated amount before the final one is known. If the final clearing amount differs, or the merchant never clears at all, the hold lingers until it expires on the issuer's schedule, often several days.
  • The double charge that isn't. A retried authorization can create two holds for one purchase. Only one clearing record will arrive; the orphan hold evaporates on expiry, but until then the money looks spent twice.
  • Tips and adjustments. A restaurant clears for more than it authorized, within scheme tolerances. The systems are built for the amounts to disagree.

In practice: an authorization is a claim that expires. Merchants who wait too long to clear, common in slow fulfilment, risk the hold expiring and the payment declining at capture, which is why e-commerce platforms re-authorize before shipping late orders.

4. Clearing: the batch that makes it real

Clearing is the unglamorous phase where the transaction stops being a reservation and becomes a payable item.

At the end of the day, the acquirer collects the day's captured transactions into files and submits them through the network to each issuer: final amounts, merchant details, currency, and the data needed to match each record to its authorization. The network validates, sorts and forwards, and calculates the fees that ride along with each record.

Two consequences of clearing being a batch process are worth pinning:

  • The capture decision belongs to the merchant. Authorization happens at order time, but the merchant chooses when to capture, at shipment for goods, at checkout for coffee. Auth-then-capture-later is a deliberate two-step, not a failure.
  • Currency conversion and fees crystallise here. The rate applied to a foreign transaction and the interchange attached to it are determined when the record clears, not when the card was tapped, which is why the amount on a statement can differ slightly from the amount on the receipt.

5. Settlement: netting turns millions into one

Settlement is where money finally moves between banks, and its defining trick is netting.

Suppose an issuer's cardholders bought 10 million worth from merchants of a given acquirer today, and that acquirer's bank issued cards whose holders bought 8 million from merchants acquired by the first bank. Gross, that is 18 million of transfers. Net, one bank owes the other 2 million. The network computes these net positions across all members and instructs transfers of only the differences, through designated settlement banks and accounts.

net positionA=receivablesApayablesA\text{net position}_A = \sum \text{receivables}_A - \sum \text{payables}_A

Netting is why settlement can be cheap at billions-of-transactions scale, and it is also why settlement is a scheduled, end-of-day affair: you cannot net a flow you have not finished collecting.

Note what settlement does not include: the merchant. Settlement gets money to the acquirer. The merchant is paid by its acquirer or PSP on a separate payout schedule, daily, weekly, or with a rolling delay held back as a cushion against refunds and disputes.

6. Why refunds are slow when charges are instant

The asymmetry that annoys every consumer has a clean mechanical explanation.

Predict first

A charge appears on your card within seconds, but a refund from the same merchant takes three to five days to show up. The merchant insists they refunded you immediately. Who is lying?

Some issuers now post refunds as soon as they see them and a few markets are faster, but the default experience is the batch clock, undisguised. The one-line summary: charges get the real-time rail because risk demands it; refunds get the batch rail because nothing about them is urgent to the system, only to you.

7. One transaction, end to end

Follow 100 through the machine to fix the sequence.

  1. Tuesday 09:00. Cardholder taps for a 100 purchase. Authorization approved in under a second; the issuer holds 100 of the cardholder's limit. No money has moved.
  2. Tuesday 22:00. The merchant's PSP captures and submits the day's batch. The 100 record clears toward the issuer overnight.
  3. Wednesday. The network computes net positions; the issuer's settlement account pays out; the acquirer is funded. Interchange and scheme fees are deducted along the way, so roughly 98 to 99 arrives at the acquiring side for a typical European consumer card.
  4. Thursday or later. The PSP pays the merchant according to its payout schedule, minus its own fee.
  5. Next month. The cardholder pays the issuer 100 with the card bill.

Five dates, one purchase. The merchant's finance team reconciles step 4 against step 1, and the difference between what was authorized and what arrived is the subject of the next lesson: the fee stack.

8. What this architecture buys, and what it costs

It is fair to ask why payments still work this way when a bank transfer app moves money in seconds.

What the three-phase design buys is scale and offline-tolerance. Authorization is tiny and fast because it carries only a decision; the heavy data rides the batch. Netting collapses interbank obligations by orders of magnitude. The credit model means a payment can be accepted even when systems downstream are degraded, because the promise, not the money, is what moves at the till.

What it costs is latency for anyone waiting on actual funds, an entire reconciliation industry to match records across the three phases, and windows of credit risk between every pair of parties.

Real-time payment systems, built this century, collapse authorization and settlement into one instant, irrevocable transfer. They are genuinely different rails with different trade-offs: instant finality, but no built-in dispute machinery and no credit cushion. Cards did not choose their architecture out of ignorance of that alternative; they chose batch netting because in their world, disputes, credit and scale came first. Which trade you want is a business decision, not a technology fashion.

Check your understanding

The lesson ends with a 5-question quiz. Take it in the player above to see your score.

  1. What does an approved authorization actually mean?
    • The issuer has transferred the funds to the acquirer
    • The issuer has reserved the amount against the cardholder's available balance and promised to honour a matching clearing record
    • The merchant has been paid minus fees
    • The network has debited the cardholder's account
  2. A hotel hold sits on your card for days after checkout. Why?
    • Settlement between banks takes a week for travel merchants
    • The network retains holds until the cardholder confirms the stay
    • The estimated authorization was never matched by an equal clearing record, so the hold persists until it expires on the issuer's schedule
    • Hotels are required to double-authorize every stay
  3. Why does interbank settlement move so much less money than the day's gross card volume?
    • Because most transactions are declined
    • Because merchants are paid directly by issuers
    • Because clearing files compress the transaction data
    • Because positions are netted: banks transfer only the difference between what they owe and are owed
  4. Why does a refund take days when the original charge appeared in seconds?
    • A refund has no authorization phase, so it travels only on the overnight clearing batches
    • Issuers hold refunds to check for fraud
    • The merchant must wait for settlement before releasing funds
    • Refunds require the cardholder's bank to reverse the original settlement
  5. In the 100 end-to-end example, when does the merchant actually receive money?
    • The moment the authorization is approved
    • At clearing, when the batch is submitted
    • After interbank settlement, on the PSP's payout schedule, minus fees
    • Only after the cardholder pays their monthly bill

Related lessons

Business
intermediate

The Four-Party Model: Who Actually Touches a Card Payment

A card payment is a trust machine between four parties who have mostly never met: cardholder, issuer, merchant, acquirer, with a network in the middle that routes messages and sets the rules. This lesson maps who does what, who carries which risk, what a PSP actually is, and the surprising answer to whose money pays the merchant on the day you tap.

9 steps·~14 min
Business
intermediate

Interchange: The Fee Structure That Shapes the Industry

Every card fee argument eventually reaches interchange: the fee the merchant's side pays to the cardholder's bank on every transaction. This lesson decomposes the merchant discount rate, explains why rewards cards exist and who really funds them, covers the EU caps of 0.2 and 0.3 percent and their loopholes, and shows why the same purchase costs a merchant triple on a corporate card.

8 steps·~12 min
Programming
beginner

The Shape of AWS: Regions, Accounts, and Who Secures What

AWS offers hundreds of services, which makes it look like a catalogue to memorise. It is not. This lesson gives the four structures everything else hangs from: the physical geography of regions and availability zones, the account as a blast-radius boundary, IAM as the one gatekeeper every call passes, and the responsibility line between you and the provider.

7 steps·~11 min
AI
intermediate

Running an Agent: Runtime, Harness, and Session Isolation

An agent is a loop that runs for minutes, holds state, executes code it just wrote, and must not leak anything into the next user's session. This lesson covers what AgentCore Runtime provides that a container does not, why session isolation is the load-bearing guarantee, and where the managed Harness sits against bringing your own loop.

7 steps·~11 min