Skip to main content

Command Palette

Search for a command to run...

Understanding Modern Settlement Systems

Payments get all the attention. Settlements carry an equally complex set of operational challenges. Have you ever wondered what happens after a payment is captured?

Updated
5 min read
Understanding Modern Settlement Systems
H
Learning, building, and sharing along the way.

Objective

The focus of this series is to explore the domain concepts, distributed systems design, operational reliability, financial workflows, and engineering tradeoffs involved in settlement infrastructure.

This series intentionally avoids discussing any specific company's proprietary architecture and instead focuses on generalized patterns commonly found in large-scale financial systems.

This series is based on my experience working with settlement & related systems. The goal is to keep the discussion practical, approachable, and implementation-focused.

In this article, we will only build a common understanding of the settlement domain related terminologies before discussing the architecture.


  • Customer : An individual or entity purchasing goods or services from a merchant.

  • Merchants : Business entities or individuals offering goods or services to customers.

  • Beneficiary : Beneficiary refers to the account receiving funds through a settlement. In most merchant payment flows, the merchant acts as the beneficiary.

  • Payment : A payment is a monetary transaction initiated by a customer for purchasing goods or services from a merchant.

  • Payment Gateway : A service that facilitates payment collection between customers and merchants.

  • Payment Capture : It’s an indicator that the funds have been successfully collected or marked for collection.

  • Refunds : A refund is the return of funds to a customer for a previously processed payment.

  • Transaction : It is a financial record representing a monetary event that affects a merchant's balance.

    Transactions are commonly created for payments, refunds, adjustments, chargebacks, and other fund movements.

  • Credit Value : Credit value represents funds that increase the merchant's payable balance.

  • Debit Value : Debit value represents funds that reduce the merchant's payable balance. Refunds are a common example.

  • Fees : Fees are charges associated with processing a payment and are typically governed by commercial agreements between involved parties.

  • Payable Balance : Payable balance represents the amount currently available or expected to become available for settlement to a beneficiary.

  • Ledger : A ledger is a financial system responsible for recording and maintaining the authoritative balance and movement of funds.

  • Transaction Readiness : Transaction readiness determines whether funds associated with a transaction can be included in a settlement.

    Readiness checks may consider factors such as payment status, refund activity, risk controls, settlement schedules, and business rules.

  • Settlement Intervals : Settlement intervals define how frequently eligible funds are settled to a beneficiary.

    Examples: Instant, T+1, T+2, T+7, and custom schedules.

  • Bank holidays / Non-business days : Bank holidays are days on which banking operations may be limited or unavailable. Settlement timelines and fund movement can be affected depending on the banking network involved.

  • Processing Window : Processing windows are predefined periods during which settlement requests can be submitted to banking partners for execution.

    Requests created outside these windows may be queued and processed when the next available window opens.

  • Settlements : A settlement is the process of calculating, reserving, and transferring eligible funds to a beneficiary according to predefined rules and schedules.

  • Settlement Value : Settlement value is derived from eligible credits, deductions, fees, refunds, and other financial adjustments applicable to a beneficiary.

  • Beneficiary Bank Account : The destination account into which settlement funds are transferred.

  • UTR : Unique Transaction Reference - A unique identifier generated by a banking partner to track a fund transfer.

  • Reconciliation : Reconciliation is the process of verifying that records across different systems remain consistent and financially accurate.

FAQ

  1. What happens after a payment is captured?
    Internally, the payment gets associated with a transaction record that carries financial and operational information required for downstream processing.

  2. What is the role of settlement service?
    The settlement system determines which transactions are eligible for settlement and manages the processes required to transfer funds to beneficiaries. Regular background processes run behind the scenes to initiate settlements at the appropriate time.

  3. How does the settlement service decide a valid settlement value?
    Settlement systems calculate valid settlement value using beneficiary's eligible balance and applicable transactions. The exact implementation varies across organizations.

  4. What happens after eligible transactions are selected?
    Once eligible transactions are selected and grouped, the settlement service initiates fund transfer requests through the banking partner.

  5. How would the settlement service know about fund transfer status?
    Settlement systems receive status updates through bank APIs, reconciliation files, webhooks, or periodic status checks depending on the banking integration.

    The banking partner typically returns a UTR that can be used to track the associated fund transfer.

  6. How will the beneficiary come to know about a successful settlement?
    The settlement service will send a notification upon successful fund transfer (post bank acknowledgement). Beneficiaries will also receive credit confirmation from their bank.


In this article, we covered the foundational terminology used throughout settlement systems. In the next article, we will follow the lifecycle of a transaction from payment capture to settlement creation and understand how different services participate in this journey.

Modern Fintech Settlement Systems

Part 2 of 2

The intent of this article (and the broader series) is to explore how modern settlement systems operate after a payment is successfully captured. While a large amount of content exists around payment processing on blogs & other relevant websites, relatively little is written about the systems, workflows, operational challenges, and engineering decisions involved in moving funds to merchants for their payments safely & reliably at scale.

Start from the beginning

Settlement Lifecycle — From Payment Capture to Fund Transfer

Introduction In the previous article, we established the terminology used throughout settlement systems. In this article, we will follow the journey of a transaction from payment capture until funds r