Skip to content

Payments In Fintech

The Art and Science of Moving Money

Menu
  • Home
  • Payments Domain
  • SWIFT
  • Instant Payments
  • About
  • Get in Touch
  • Roadmap
Menu

3. Decoding ISO 20022 Message Flows in Instant Payments: From Initiation to Settlement

Posted on April 15, 2025April 18, 2025 by Vishal Sharma

Introduction
Imagine sending money to a friend and watching it arrive in seconds—no delays, no guesswork. This magic is powered by ISO 20022, the universal language of modern payments. Behind every instant transaction lies a symphony of standardized messages like pacs.008, pain.001, and pacs.007 – ISO 20022 Message Flows in Instant Payments, ensuring funds move seamlessly across borders and banks. Let’s unravel how these messages work, with real-world examples to demystify the process.


Table of Contents

  • What is ISO 20022 and Why Does It Matter?
  • Key ISO 20022 Messages in Instant Payments
  • Real-World ISO 20022 Message Examples
    • 1. pain.001 – Customer Payment Request
    • 2. pacs.008 – Interbank Payment Order
    • 3. pacs.002 – Payment Confirmation
    • 4. pacs.007 – Payment Recall Request
  • The End-to-End Message Flow
  • Why ISO 20022 is a Game-Changer

What is ISO 20022 and Why Does It Matter?

ISO 20022 is a global standard for financial messaging, designed to replace outdated formats with structured, data-rich exchanges. For instant payments, it ensures:

  • Speed: Real-time processing.
  • Clarity: Detailed transaction data (e.g., payer info, purpose codes).
  • Compliance: Built-in regulatory checks.

Think of it as a GPS guiding payments through the financial ecosystem—no wrong turns, no lost data.


Key ISO 20022 Messages in Instant Payments

Let’s break down the critical players:

  1. pain.001 (Customer Credit Transfer Initiation)
    • Role: Initiated by customers (e.g., businesses) to instruct their bank to send funds.
    • Example Scenario: A company payroll system triggers salary payments.
  2. pacs.008 (Payment Initiation)
    • Role: Requests a funds transfer between accounts.
    • Used by: Banks to send payment instructions.
    • Example Scenario: You transfer $100 to a vendor via your bank.
  3. pacs.002 (Payment Status Report)
    • Role: Confirms if a payment succeeded, failed, or is pending.
    • Example Scenario: Your bank notifies you: “Payment to John Doe completed.”
  4. pacs.007 (Request for Payment Recall)
    • Role: Reverses a payment due to errors or fraud.
    • Example Scenario: A bank requests a refund after a duplicate transaction.

ISO 20022 Message Flows in Instant Payments

Flow Image Source: iso20022payments.com

Real-World ISO 20022 Message Examples

Here’s how these messages look in practice (simplified for clarity):

1. pain.001 – Customer Payment Request

<Document xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.11">  
  <CstmrCdtTrfInitn>  
    <GrpHdr>  
      <MsgId>TX123456</MsgId>  
      <CreDtTm>2023-10-05T14:30:00</CreDtTm>  
    </GrpHdr>  
    <PmtInf>  
      <Dbtr>  
        <Nm>Alice Smith</Nm>  
        <Acct>  
          <Id>123456789</Id>  
        </Acct>  
      </Dbtr>  
      <CdtTrfTxInf>  
        <Amt>  
          <InstdAmt Ccy="USD">100.00</InstdAmt>  
        </Amt>  
        <Cdtr>  
          <Nm>Bob Jones</Nm>  
          <Acct>  
            <Id>987654321</Id>  
          </Acct>  
        </Cdtr>  
        <RmtInf>  
          <Ustrd>Invoice #789</Ustrd>  
        </RmtInf>  
      </CdtTrfTxInf>  
    </PmtInf>  
  </CstmrCdtTrfInitn>  
</Document>  

What’s Happening: Alice’s business instructs her bank to pay Bob $100 for Invoice #789.


2. pacs.008 – Interbank Payment Order

<Document xmlns="urn:iso:std:iso:20022:tech:xsd:pacs.008.001.08">  
  <FIToFICstmrCdtTrf>  
    <GrpHdr>  
      <MsgId>BANK987</MsgId>  
      <CreDtTm>2023-10-05T14:31:00</CreDtTm>  
    </GrpHdr>  
    <CdtTrfTxInf>  
      <PmtId>  
        <EndToEndId>TX123456</EndToEndId>  
      </PmtId>  
      <Amt>  
        <InstdAmt Ccy="USD">100.00</InstdAmt>  
      </Amt>  
      <DbtrAgt>  
        <FinInstnId>  
          <BIC>ALICEBANK</BIC>  
        </FinInstnId>  
      </DbtrAgt>  
      <CdtrAgt>  
        <FinInstnId>  
          <BIC>BOBBANK</BIC>  
        </FinInstnId>  
      </CdtrAgt>  
    </CdtTrfTxInf>  
  </FIToFICstmrCdtTrf>  
</Document>  

What’s Happening: Alice’s bank (ALICEBANK) tells Bob’s bank (BOBBANK) to credit his account.


3. pacs.002 – Payment Confirmation

<Document xmlns="urn:iso:std:iso:20022:tech:xsd:pacs.002.001.10">  
  <FIToFIPmtStsRpt>  
    <GrpHdr>  
      <MsgId>STATUS789</MsgId>  
      <CreDtTm>2023-10-05T14:32:00</CreDtTm>  
    </GrpHdr>  
    <TxInfAndSts>  
      <OrgnlEndToEndId>TX123456</OrgnlEndToEndId>  
      <TxSts>ACSC</TxSts> <!-- "ACSC" = Accepted Settlement Completed -->  
    </TxInfAndSts>  
  </FIToFIPmtStsRpt>  
</Document>  

What’s Happening: BOBBANK confirms to ALICEBANK that Bob received the $100.


4. pacs.007 – Payment Recall Request

<Document xmlns="urn:iso:std:iso:20022:tech:xsd:pacs.007.001.10">  
  <FIToFIPmtRvsl>  
    <GrpHdr>  
      <MsgId>REVOKE456</MsgId>  
      <CreDtTm>2023-10-05T14:35:00</CreDtTm>  
    </GrpHdr>  
    <TxInf>  
      <OrgnlEndToEndId>TX123456</OrgnlEndToEndId>  
      <RvslRsn>  
        <Cd>DUPL</Cd> <!-- "DUPL" = Duplicate Payment -->  
      </RvslRsn>  
    </TxInf>  
  </FIToFIPmtRvsl>  
</Document>  

What’s Happening: ALICEBANK requests a reversal because the payment was sent twice.


The End-to-End Message Flow

  1. Step 1: A business sends a pain.001 to its bank.
  2. Step 2: The bank converts this into a pacs.008 and forwards it to the recipient’s bank.
  3. Step 3: The recipient’s bank confirms success via pacs.002.
  4. Step 4: If needed, a pacs.007 triggers a reversal.

This entire process happens in seconds, even across borders!


Why ISO 20022 is a Game-Changer

  • Rich Data: Messages include invoices, tax details, and compliance info.
  • Global Compatibility: Works for domestic and cross-border payments.
  • Future-Proof: Supports blockchain, AI, and emerging tech.

Conclusion
ISO 20022 messages like pacs.008 and pain.001 are the unsung heroes of instant payments, turning complex workflows into effortless transactions. As the world shifts to real-time finance, understanding these flows isn’t just for tech teams—it’s for anyone who values speed, transparency, and reliability.

Make sure you have checked the SWIFT series.

Share on Social Media
x facebook linkedin redditwhatsapptelegram

Post navigation

← 2. Why Instant Payments Are Exploding: The 4 Key Forces Fueling the Real-Time Money Revolution
11. Different ISO 20022 Settlement Methods – INGA, INDA, COVE, CLRG →

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Latest Content

  • 11. Different ISO 20022 Settlement Methods – INGA, INDA, COVE, CLRG
  • 3. Decoding ISO 20022 Message Flows in Instant Payments: From Initiation to Settlement
  • 2. Why Instant Payments Are Exploding: The 4 Key Forces Fueling the Real-Time Money Revolution
  • 1. Instant Payments System: Revolutionizing Real-Time Transactions in the Digital Age
  • Part 2 – SWIFT Question & Answers
  • 8. SWIFT MT103 Returns and pacs.004 Explained
  • 7. SWIFT MT103 Announcement & MT202 Cover(pacs.009COV) Messages
  • 6. MT202 to pacs.009 MX Message Conversion
  • 5. What is MT202 message? Explained with Examples
  • 4. MT to MX Migration for MT103 to pacs.008 Messages
  • Part 1 – Question & Answers – SWIFT
  • 3. Different Scenarios in MT103
  • 2. What Is MT103 SWIFT Message
  • 1. What Are SWIFT Standards Messages? Guide with Real-Life Examples
  • 10. Starting a Payment Business: A Step-by-Step Guide to Success
  • 9. Payment Challenges and Solutions: Overcoming Barriers in the Digital Age
  • 8. Payment Technologies and Innovations: Shaping the Future of Transactions
  • 7. Payment Regulations and Standards: A Complete Guide for Businesses
  • 6. Global Payment Trends
  • 5. Payment Security and Compliance

Don't Miss Updates

Please verify that you are human.

Follow us on Social Media
linkedin

Archives

  • April 2025
  • March 2025
  • February 2025

Categories

  • Instant Payments
  • Payments Domain
  • SWIFT
© 2025 Payments In Fintech | Powered by Minimalist Blog