Understanding RTGS: Message Standards and Protocols

Message standards are the language of RTGS systems. This article explores the message formats, protocols, and standards that enable interoperability between financial institutions in real-time gross settlement networks.

1 Evolution of Payment Message Standards

1.1 Historical Context

timeline title Payment Message Standards Evolution 1973 : SWIFT Founded : First standards developed 1977 : SWIFT MT Messages : Category 1 (Customer Transfers) 2004 : ISO 20022 Published : XML-based standard 2018 : RTGS Migration Begins : TARGET2, Fedwire adopt ISO 20022 2023 : SWIFT MT Migration : Coexistence period begins 2025 : ISO 20022 Dominance : Most major systems migrated

1.2 Standards Comparison

StandardFormatEraStatus
SWIFT MTFixed-length text1977-2025Legacy (phasing out)
ISO 20022XML/JSON2004-presentCurrent standard
FedwireProprietary1918-presentUS-specific
CHIPSProprietary1971-presentUS clearing only

2 ISO 20022 Fundamentals

2.1 What is ISO 20022?

๐Ÿ“ISO 20022 Overview

ISO 20022 is an international standard for financial services messaging that provides: โœ… Common Platform

  • Unified methodology for message development
  • Standardized data dictionary
  • Consistent modeling approach (UML) โœ… Rich Data Structure
  • XML-based format (primary)
  • JSON support (emerging)
  • Extensible data model โœ… Global Adoption
  • Used by 70+ countries
  • Major RTGS systems migrated
  • SWIFT migration underway

2.2 Why ISO 20022?

The development of ISO 20022 was driven by fundamental limitations in legacy messaging standards that had served the financial industry for decades but could no longer meet modern requirements. The Problem with Legacy Standards: When SWIFT MT standards were created in the 1970s, system storage and bandwidth were expensive commodities. Message designs prioritized minimalismโ€”every character counted. This resulted in fixed-length text formats with severe constraints:

LimitationImpact
Field size constraintsNames truncated to 35 characters, addresses to 4 lines
Unstructured formatsFree-text fields led to inconsistent interpretation
Ambiguityโ€CAโ€ could mean Canada or California; โ€œNYCโ€ vs โ€œNEW YORKโ€
Limited data capacityOnly essential transaction data could be transmitted
Manual interventionInsufficient structure hampered automation
The Business Case for Change:
By the early 2000s, these limitations created critical problems:
  1. Regulatory Pressure: Post-9/11 AML/KYC regulations demanded greater transparency about payment participants and purposes. Legacy messages couldnโ€™t provide sufficient detail for compliance screening.
  2. Automation Barriers: Unstructured data required manual review and intervention, increasing operational costs and error rates. Straight-through processing (STP) was impossible without standardized, machine-readable fields.
  3. Global Fragmentation: Different regions and systems used incompatible formats, creating friction in cross-border payments. The G20 identified this as a barrier to efficient international trade.
  4. Innovation Constraints: New financial products and services couldnโ€™t be supported by rigid legacy formats. The industry needed an extensible standard that could evolve. The ISO 20022 Solution: ISO 20022 addresses these challenges through:
  • Rich, structured data โ€“ XML format supports comprehensive information exchange with unlimited field lengths and hierarchical organization
  • Rules-based methodology โ€“ Standardized data dictionary eliminates ambiguity (e.g., separate fields for country codes vs. state codes)
  • Extensibility โ€“ New message types and data elements can be added without breaking existing implementations
  • Global harmonization โ€“ Single standard replaces fragmented regional formats, enabling seamless cross-border payments The result is a standard that supports straight-through processing rates exceeding 95%, compared to 60-70% under legacy MT formats, while simultaneously meeting regulatory transparency requirements and enabling innovation in financial services.

2.3 ISO 20022 Message Structure

graph TB A["ISO 20022 Message"] A --> B["Message Header"] A --> C["Message Body (Payload)"] A --> D["Message Trailer"] B --> B1["Message Definition Identifier"] B --> B2["Business Application Header"] B --> B3["Security Elements"] C --> C1["Transaction Information"] C --> C2["Party Information"] C --> C3["Amount & Currency"] C --> C4["Dates & Times"] C --> C5["Remittance Information"] D --> D1["Security Trailer"] D --> D2["Validation Data"] style A fill:#1976d2,stroke:#0d47a1,color:#fff style B fill:#e3f2fd,stroke:#1976d2 style C fill:#fff3e0,stroke:#f57c00

2.4 Message Naming Convention

ISO 20022 uses a standardized naming pattern:

๐Ÿ“๐Ÿ‘ฅ For Implementers

Want to know what ISO 20022 knowledge your team actually needs? See ISO 20022 Skills Guide for RTGS Developers for role-based guidance on practical competencies vs. theoretical knowledge.

<BusinessArea><Function><SubFunction><Variant>
Example: pacs.008.001.08
โ”œโ”€โ”€ pacs  = Payments Clearing and Settlement
โ”œโ”€โ”€ 008   = Customer Credit Transfer
โ”œโ”€โ”€ 001   = Message variant
โ””โ”€โ”€ 08    = Version number

Common RTGS Message Types:

Message TypeCodeUsage
Customer Credit Transferpacs.008High-value customer payments
Financial Institution Transferpacs.009Bank-to-bank transfers
Payment Status Reportpacs.002Payment status notification
Cancel Requestpacs.004Payment cancellation
Returnpacs.004Payment return

2.5 Consistent Modeling Approach (UML)

ISO 20022โ€™s foundation lies in its rigorous, model-driven methodology. Unlike legacy standards that defined message formats directly, ISO 20022 starts with abstract business models that are then transformed into concrete message schemas.

What โ€œConsistent Modeling Approachโ€ Means

The consistent modeling approach ensures that all business concepts across financial services are represented uniformly, regardless of the specific message type or use case. This consistency delivers three critical benefits:

PrincipleDescriptionBenefit
Uniform Business ConceptsAll business entities (parties, transactions, accounts) are modeled using the same definitionsEliminates ambiguity; โ€œDebtorโ€ means the same thing in every message
Unambiguous ModelsEach model element has a precise, documented semantic meaningNo interpretation required; reduces implementation errors
Reliable Message GenerationMessages can be automatically generated in multiple syntaxes from the same modelSingle source of truth; XML, JSON, ASN.1 stay synchronized
graph TB A["Business Requirement"] --> B["UML Model"] B --> C["Message Definition"] C --> D["XML Schema (XSD)"] C --> E["JSON Schema"] C --> F["ASN.1 Schema"] B --> G["Business Data Dictionary"] G --> B style A fill:#e3f2fd,stroke:#1976d2 style B fill:#1976d2,stroke:#0d47a1,color:#fff style C fill:#fff3e0,stroke:#f57c00 style D fill:#f5f5f5,stroke:#616161 style E fill:#f5f5f5,stroke:#616161 style F fill:#f5f5f5,stroke:#616161 style G fill:#e8f5e9,stroke:#2e7d32

The ISO 20022 UML Profile

While ISO 20022 uses UML (Unified Modeling Language) as its modeling foundation, it applies a constrained UML profile specifically designed for financial messaging. This constraint ensures consistency and tool compatibility. Constrained Elements:

UML ElementISO 20022 UsageSemantic Meaning
ClassBusiness concept or messageRepresents a business entity (e.g., Payment, Party)
AttributeData fieldSingle piece of information with defined type
AssociationRelationshipReference from one class to another
DataTypeReusable structureCommon patterns (e.g., Address, Amount)
EnumerationCode listFixed set of allowed values
InheritanceSpecializationExtended message types inherit base structure
Not Allowed (or Restricted):
  • Multiplicity markers beyond 0..1, 1, 0.., and 1..
  • Complex UML behaviors or state machines
  • Free-form notes without semantic definition
  • Custom stereotypes outside the ISO 20022 profile

Key Elements of the ISO 20022 UML Approach

1. Business Concept Layer โ€” Defines what the message represents:

classDiagram class PaymentInstruction { +PaymentIdentification +PaymentTypeInformation +Amount +Date } class PartyIdentification { +Name +Address +BIC +LEI } class FinancialInstitution { +BIC +Name +Branch } PaymentInstruction --> PartyIdentification : references PaymentInstruction --> FinancialInstitution : references

2. Data Type Layer โ€” Reusable building blocks:

Data TypePurposeExample
Max35TextShort text fieldTransaction ID
ActiveCurrencyAndAmountCurrency + amountUSD 1,000,000.00
ISODateDate format2025-12-10
CountryCodeCountry identifierUS, GB
BICFIIdentifierBank identifierBANKUS33XXX
3. Message Structure Layer โ€” How elements combine:
classDiagram class FIToFICustomerCreditTransfer { +GroupHeader +CreditTransferTransactionInformation[] } class GroupHeader { +MessageIdentification +CreationDateTime +NumberOfTransactions +SettlementInformation } class CreditTransferTransactionInformation { +PaymentIdentification +Amount +DebtorAgent +CreditorAgent +UltimateDebtor +UltimateCreditor } FIToFICustomerCreditTransfer "1" *-- "1" GroupHeader FIToFICustomerCreditTransfer "1" *-- "1..*" CreditTransferTransactionInformation

Simple UML Diagram Example

Hereโ€™s a simplified UML class diagram showing the core structure of a payment message:

classDiagram class Document { +FIToFICstmrCdtTrf } class FIToFICstmrCdtTrf { +GrpHdr : GroupHeader +CdtTrfTxInf : CreditTransferTransactionInformation[] } class GroupHeader { +MsgId : Max35Text +CreDtTm : ISODateTime +NbOfTxs : Max15NumericText +SttlmInf : SettlementInformation } class CreditTransferTransactionInformation { +PmtId : PaymentIdentification +IntrBkSttlmAmt : ActiveCurrencyAndAmount +DbtrAgt : BranchAndFinancialInstitutionIdentification +CdtrAgt : BranchAndFinancialInstitutionIdentification +UltmtDbtr : PartyIdentification +UltmtCdtr : PartyIdentification } Document --> FIToFICstmrCdtTrf FIToFICstmrCdtTrf --> GroupHeader FIToFICstmrCdtTrf --> CreditTransferTransactionInformation note for Document "Root element" note for CreditTransferTransactionInformation "Repeating transaction block"

How UML Maps to XML (MX Messages)

The transformation from UML model to XML schema follows deterministic rules:

UML ElementXML RepresentationExample
ClassXML Element<CdtTrfTxInf>
AttributeChild Element or Attribute<MsgId>MSG-123</MsgId>
DataTypeElement with type definition<IntrBkSttlmAmt Ccy="USD">
AssociationNested Element<DbtrAgt><FinInstnId>...</FinInstnId></DbtrAgt>
Enumerationxsd
<Cd>URGP</Cd> (from fixed list)
Multiplicity 0..1minOccurs="0"Optional element
Multiplicity 1..*minOccurs="1" maxOccurs="unbounded"Required repeating

For detailed coverage of cardinality rules and multiplicity, see ISO 20022 Cardinality Rules Deep Dive. UML to XML Transformation Example:

  • Note: The ASCII art diagram below provides a proposed example illustrating how a UML class definition can be transformed into its corresponding XML output. This is a simplified representation of the auto-generation process.
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ UML Class                    โ”‚ XML Output                   โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ class PaymentIdentification  โ”‚ <PmtId>                      โ”‚
โ”‚   +TxId : Max35Text          โ”‚   <TxId>TRANSACTION-001</TxIdโ”‚
โ”‚   +InstrId : Max35Text       โ”‚   <InstrId>INSTR-001</InstrIdโ”‚
โ”‚                              โ”‚ </PmtId>                     โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

The XML schema (XSD) is auto-generated from the UML model, ensuring:

  • Schema always matches the business model
  • Changes to business rules propagate automatically
  • No manual schema editing errors

ISO 20022 UML vs. Traditional SWIFT MT Modeling

The difference between ISO 20022โ€™s model-driven approach and SWIFT MTโ€™s format-driven approach is fundamental:

AspectSWIFT MTISO 20022 UML
Starting PointMessage format specificationBusiness domain model
StructureFixed-length text fieldsHierarchical XML elements
Data DictionaryImplicit in field definitionsExplicit, reusable entities
ExtensibilityLimited (new MT types needed)High (add elements without breaking)
AmbiguityHigh (free-text fields common)Low (structured, typed fields)
ValidationPosition-based parsingSchema-based validation
Tool SupportManual interpretationAutomated model-to-code generation
SWIFT MT Approach (Format-Driven):
:20:TRANSACTION-001          โ† Field tag + free text
:32A:251210USD1000000,00     โ† Packed format (date+currency+amount)
:50:ABC CORPORATION          โ† Unstructured name
     WALL STREET 100         โ† Free-text address
     NEW YORK, NY            โ† Interpretation required
:59:XYZ LIMITED              โ† Beneficiary
:70:INVOICE PAYMENT          โ† Unstructured remittance

ISO 20022 Approach (Model-Driven):

  • Note: The XML snippet below is a proposed example illustrating the model-driven approach of ISO 20022. This is a simplified and partial representation of a pacs.008 message, serving as an illustration.
<TxId>TRANSACTION-001</TxId>                    โ† Typed element
<IntrBkSttlmAmt Ccy="USD">1000000.00</IntrBkSttlmAmt>  โ† Structured amount
<IntrBkSttlmDt>2025-12-10</IntrBkSttlmDt>      โ† ISO date
<UltmtDbtr>
  <Nm>ABC Corporation</Nm>                      โ† Explicit name field
  <PstlAdr>
    <StrtNm>Wall Street</StrtNm>                โ† Structured address
    <BldgNb>100</BldgNb>
    <TwnNm>New York</TwnNm>
    <Ctry>US</Ctry>
  </PstlAdr>
</UltmtDbtr>
<RmtInf>
  <Ustrd>Invoice Payment</Ustrd>                โ† Explicit remittance
</RmtInf>

Key Advantages of the UML Approach:

  1. Semantic Clarity โ€” Every element has a defined meaning; no interpretation needed
  2. Validation โ€” XML Schema validates structure automatically
  3. Extensibility โ€” New fields can be added without breaking existing implementations
  4. Automation โ€” Code generators can produce classes, schemas, and documentation from models
  5. Consistency โ€” Same business concept (e.g., โ€œPartyโ€) appears identically across all messages This model-driven methodology is why ISO 20022 achieves straight-through processing rates exceeding 95% compared to 60-70% under MT formatsโ€”the structured, unambiguous data enables full automation without manual intervention.

3 Key ISO 20022 Messages for RTGS

3.1 pacs.008 - Customer Credit Transfer

The primary message for customer payments:

  • Note: The XML snippet below is a proposed example of a pacs.008 message. While pacs.008 is a standardized message type, the specific values and some elements presented here are illustrative and may vary in actual implementations.
<?xml version="1.0" encoding="UTF-8"?>
<Document xmlns="urn:iso:std:iso:20022:tech:xsd:pacs.008.001.08">
  <FIToFICstmrCdtTrf>
    <!-- Group Header -->
    <GrpHdr>
      <MsgId>MSG-12345-2025</MsgId>
      <CreDtTm>2025-12-10T10:30:00Z</CreDtTm>
      <NbOfTxs>1</NbOfTxs>
      <SttlmInf>
        <SttlmMtd>INDA</SttlmMtd>
      </SttlmInf>
    </GrpHdr>
    <!-- Credit Transfer Transaction -->
    <CdtTrfTxInf>
      <PmtId>
        <InstrId>INSTRUCTION-001</InstrId>
        <TxId>TRANSACTION-001</TxId>
      </PmtId>
      <!-- Payment Type Information -->
      <PmtTpInf>
        <InstrPrty>URGT</InstrPrty>
        <SvcLvl>
          <Cd>URGP</Cd>
        </SvcLvl>
      </PmtTpInf>
      <!-- Amount -->
      <IntrBkSttlmAmt Ccy="USD">1000000.00</IntrBkSttlmAmt>
      <!-- Settlement Information -->
      <IntrBkSttlmDt>2025-12-10</IntrBkSttlmDt>
      <!-- Debtor Institution -->
      <DbtrAgt>
        <FinInstnId>
          <BICFI>BANKUS33XXX</BICFI>
        </FinInstnId>
      </DbtrAgt>
      <!-- Creditor Institution -->
      <CdtrAgt>
        <FinInstnId>
          <BICFI>BANKGB2LXXX</BICFI>
        </FinInstnId>
      </CdtrAgt>
      <!-- Ultimate Debtor -->
      <UltmtDbtr>
        <Nm>ABC Corporation</Nm>
        <PstlAdr>
          <StrtNm>Wall Street</StrtNm>
          <BldgNb>100</BldgNb>
          <PstCd>10005</PstCd>
          <TwnNm>New York</TwnNm>
          <Ctry>US</Ctry>
        </PstlAdr>
      </UltmtDbtr>
      <!-- Ultimate Creditor -->
      <UltmtCdtr>
        <Nm>XYZ Limited</Nm>
        <PstlAdr>
          <StrtNm>City Road</StrtNm>
          <BldgNb>50</BldgNb>
          <PstCd>EC1V</PstCd>
          <TwnNm>London</TwnNm>
          <Ctry>GB</Ctry>
        </PstlAdr>
      </UltmtCdtr>
      <!-- Remittance Information -->
      <RmtInf>
        <Ustrd>Invoice INV-2025-001 Payment</Ustrd>
      </RmtInf>
    </CdtTrfTxInf>
  </FIToFICstmrCdtTrf>
</Document>

3.2 pacs.009 - Financial Institution Transfer

Used for interbank transfers (own account transfers):

graph LR subgraph "pacs.008 (Customer Payment)" A1[Customer A] --> A2[Bank A] A2 --> A3[RTGS System] A3 --> A4[Bank B] A4 --> A5[Customer B] end subgraph "pacs.009 (Bank Transfer)" B1[Bank A] --> B2[RTGS System] B2 --> B3[Bank B] B2 -.-> B4[Own Account] end style A3 fill:#1976d2,stroke:#0d47a1,color:#fff style B2 fill:#1976d2,stroke:#0d47a1,color:#fff

Key Differences:

Aspectpacs.008pacs.009
PurposeCustomer paymentsInterbank transfers
Ultimate PartiesCustomer to CustomerBank to Bank
Remittance InfoRequiredOptional
Use CaseCommercial paymentsLiquidity transfers

3.3 pacs.002 - Payment Status Report

Provides status updates on payments:

  • Note: The XML snippet below is a proposed example of a pacs.002 message. While pacs.002 is a standardized message type, the specific values and some elements presented here are illustrative and may vary in actual implementations.
<Document xmlns="urn:iso:std:iso:20022:tech:xsd:pacs.002.001.10">
  <FIToFIPmtStsRpt>
    <GrpHdr>
      <MsgId>STATUS-12345</MsgId>
      <CreDtTm>2025-12-10T10:31:00Z</CreDtTm>
    </GrpHdr>
    <OrgnlGrpInf>
      <OrgnlMsgId>MSG-12345-2025</OrgnlMsgId>
      <OrgnlMsgNmId>pacs.008.001.08</OrgnlMsgNmId>
    </OrgnlGrpInf>
    <TxInfAndSts>
      <OrgnlTxId>TRANSACTION-001</OrgnlTxId>
      <!-- Transaction Status -->
      <TxSts>ACSC</TxSts>
      <!-- ACSC = Accepted Settlement Completed -->
      <StsRsnInf>
        <Rsn>
          <Cd>SETC</Cd>
          <!-- SETC = Settlement Completed -->
        </Rsn>
      </StsRsnInf>
      <SttlmInf>
        <SttlmSts>STLD</SttlmSts>
        <!-- STLD = Settled -->
      </SttlmInf>
    </TxInfAndSts>
  </FIToFIPmtStsRpt>
</Document>

Status Codes:

CodeMeaningDescription
ACSCAccepted Settlement CompletedSuccessfully settled
ACCPAccepted Customer ProfileCustomer validated
ACSPAccepted Settlement in ProcessBeing processed
RJCTRejectedPayment rejected
PDNGPendingAwaiting processing
ACTCAccepted Technical ValidationTechnically valid

4 SWIFT MT to ISO 20022 Migration

4.1 MT Message Categories

graph LR A["SWIFT MT Messages"] A --> B["Category 1: Customer"] A --> C["Category 2: Financial"] A --> D["Category 9: Confirmations"] B --> B1[MT103: Customer Transfer] B --> B2[MT103+: Enhanced] C --> C1[MT202: Bank Transfer] C --> C2[MT202COV: Cover Payment] D --> D1[MT910: Credit Confirm] D --> D2[MT900: Debit Confirm] style A fill:#1976d2,stroke:#0d47a1,color:#fff style B1 fill:#ffebee,stroke:#c62828 style C1 fill:#ffebee,stroke:#c62828

4.2 MT to ISO 20022 Mapping

MT103 to pacs.008:

MT103 FieldISO 20022 ElementNotes
(TRN)
PmtId.TxIdTransaction ID
(Value Date/Currency/Amount)
IntrBkSttlmAmt + IntrBkSttlmDtAmount and date
(Ordering Customer)
UltmtDbtrUltimate debtor
(Ordering Institution)
DbtrAgtDebtor agent
(Beneficiary Customer)
UltmtCdtrUltimate creditor
(Account With Institution)
CdtrAgtCreditor agent
(Remittance Info)
RmtInf.UstrdRemittance details
MT202 to pacs.009:
MT202 FieldISO 20022 ElementNotes
---------------------------------------
(TRN)
PmtId.TxIdTransaction ID
(Value Date/Currency/Amount)
IntrBkSttlmAmtSettlement amount
(Ordering Institution)
DbtrAgtDebtor agent
(Account With Institution)
CdtrAgtCreditor agent

4.3 Migration Timeline

gantt title SWIFT MT to ISO 20022 Migration dateFormat YYYY-MM axisFormat %Y-%m section Coexistence MT & ISO Parallel :active, coex, 2022-11, 2025-11 section Migration Phase 1 Readiness :done, phase1, 2022-11, 2023-06 Phase 2 Testing :done, phase2, 2023-06, 2024-06 Phase 3 Migration :active, phase3, 2024-06, 2025-06 Phase 4 Completion :phase4, 2025-06, 2025-11 section End of MT MT Shutdown :crit, shutdown, 2025-11, 1m

5 Further Reading

For technical implementation details including XML validation technologies, communication protocols, and testing, see the companion article: โ†’ Understanding RTGS: Message Implementation and Validation This companion article covers:

  • XML validation stack (XSD, Schematron, XMLDSig)
  • Communication protocols (TLS, REST APIs, Message Queues)
  • Testing and certification requirements

6 Summary

๐Ÿ“Key Takeaways

Essential message standards knowledge: โœ… ISO 20022 Dominance

  • Global standard for RTGS messaging
  • XML-based with rich data structure
  • Replacing legacy SWIFT MT formats โœ… Why ISO 20022?
  • Legacy MT standards had severe data limitations
  • Regulatory pressure demanded greater transparency
  • Enables straight-through processing rates exceeding 95% โœ… Key Message Types
  • pacs.008: Customer credit transfers
  • pacs.009: Financial institution transfers
  • pacs.002: Payment status reports โœ… Migration from MT
  • SWIFT MT sunset November 2025
  • Mapping between MT and ISO 20022
  • Coexistence period ending

Footnotes for this article: