BEGINNER 15 min read Module 1 ยท Lesson 1

Payment Definition, Types & Core Concepts

Learn what a payment is, how payment types differ, and why these distinctions matter for system design and compliance.

What Is a Payment?

At its most fundamental level, a payment is the transfer of value from one party to another in satisfaction of an obligation. While this definition sounds straightforward, the mechanics underpinning modern payments involve dozens of institutions, multiple technology layers, and complex legal frameworks operating across milliseconds or multi-day settlement windows.

In the context of financial services, payments are classified along several axes โ€” direction of flow, timing of settlement, reversibility, and the rail (network) over which they travel. Understanding these axes is essential whether you're designing a payment product, writing API documentation, or building compliance controls.

Push vs. Pull Payments

The most fundamental distinction in payments is between push and pull transactions:

This distinction has profound implications for disputes and reversibility. Pull payments can generally be reversed (chargebacks, return items). Push payments, particularly wire transfers, are typically final once the receiving bank credits the beneficiary account.

Note โ€” Real-Time Push Payments

Real-Time Payments (RTP) via The Clearing House and FedNow are push-only networks by design. This means the payer explicitly initiates every transfer. There is no pull capability โ€” a feature that reduces fraud surface but limits use cases like subscription billing.

Payment Types by Rail

Payment "rails" refer to the infrastructure and rules networks over which value travels. Each rail has different characteristics for speed, reversibility, cost, and coverage:

Rail Settlement Reversible Typical Use
ACH T+1 (batch) Yes (60 days) Payroll, bill pay, subscriptions
Card (Visa/MC) T+1โ€“T+2 Yes (chargeback) Retail POS, e-commerce
Wire (Fedwire) Same-day No (final) Large-value interbank, real estate
RTP / FedNow Seconds (24/7) No (near-final) Gig pay, insurance claims, B2C
SWIFT T+1โ€“T+5 Difficult Cross-border, trade finance

Key Participants in a Payment Transaction

A single card payment at a coffee shop involves at least five distinct entities, each with a defined role and contractual relationship:

When a payment service provider (PSP) like Stripe or Adyen is involved, it typically performs the acquirer function or aggregates processing on behalf of multiple acquirers, adding a technology layer between the merchant and the underlying financial infrastructure.

Tip โ€” Understanding the Four-Party Model

Visa and Mastercard operate on a "four-party model": cardholder, merchant, issuer, and acquirer. Amex traditionally operates on a "three-party model" (they issue the card and act as acquirer), though this is evolving. The model determines who bears interchange fees and chargebacks.

Payment Timing: When Do Funds Actually Move?

There is often confusion between authorization, clearing, and settlement โ€” three distinct events that collectively complete a payment:

This time lag is economically significant. A merchant's bank account is typically credited 1โ€“2 business days after the transaction, even though the customer's account was debited at the point of authorization. Instant settlement products (RTP, Visa Direct, Mastercard Send) are closing this gap for specific use cases.

// Simplified payment object โ€” showing relationship between authorization and settlement { "transaction_id": "txn_1a2b3c4d5e", "status": "settled", "amount": 4250, // in cents: $42.50 "currency": "USD", "type": "card_pull", // card debit = pull "rail": "visa", "authorized_at": "2025-02-10T14:32:00Z", // T+0 "cleared_at": "2025-02-10T23:59:00Z", // T+0 (next batch) "settled_at": "2025-02-11T09:00:00Z", // T+1 "merchant_credited": 4073 // net of 4.17% interchange }
Key Takeaways โ€” Lesson 1.1
  • A payment is the transfer of value in satisfaction of an obligation โ€” direction, timing, and rail determine its type
  • Push payments are sender-initiated (ACH credits, wires, RTP); pull payments are receiver-initiated (card debits, ACH debits)
  • Authorization, clearing, and settlement are distinct events separated by hours or days
  • The four-party model involves cardholder, issuer, acquirer, and card network โ€” each with distinct roles and fee arrangements
  • Rail selection drives settlement speed, reversibility, and compliance requirements
Test Your Knowledge

Ready to check your understanding of payment fundamentals?

Take the Module 1 Quiz โ†’