Skip to content
Baseella
  • Home
  • Features
  • About
  • Pricing
  • Contact
Schedule a demo
Schedule a demo
  • Home
  • Features
  • About
  • Pricing
  • Contact
Baseella
  • Home
  • Features
  • About
  • Pricing
  • Contact
Baseella
  • Home
  • Features
  • About
  • Pricing
  • Contact
Schedule a demo
Schedule a demo
  • Home
  • Features
  • About
  • Pricing
  • Contact
Baseella
  • Home
  • Features
  • About
  • Pricing
  • Contact
Modern core banking system happy robot

Core banking and payments technology

11
  • What is a Core Banking System? 7 Key Features
  • What are Legacy Core Banking Systems? The Complex Nightmare
  • What are the key advantages of using a SaaS cloud-based banking system? Top 7 reasons why to avoid developing your own
  • Is using an open-source technology in core banking software development safe and secure? 
  • What are the advantages of using an open-source database in modern cloud-based whitelabel bank software? 
  • What advantages RESTful API has over SOAP API?
  • How does the use of GraphQL Federation enhances RESTful APIs?
  • Key principles and advantages of the microservices architecture in payment software solutions
  • What are the benefits of integrating container and orchestration technologies such as Docker and Kubernetes into the deployment of cloud-based software for bank systems?
  • What are the typical security measures undertaken by the cloud core banking systems developers to address the security concerns of financial institutions?
  • What is required of the SaaS cloud-based core banking software to enable the financial institutions to provide banking as a service or a superapps?
Modern core banking system happy robot

Regulations and compliance

15
  • What Is Confirmation of Payee?
  • What Is Verification of Payee?
  • What is PCI DSS? The best explanation
  • What are the key concerns when choosing the core banking system from the perspective of regulatory compliance?
  • What is Open Banking, and why do banks, payment institutions and e-money institutions in the EU must publish Open Banking API?
  • What is strong customer authentication (SCA) regulatory technical standard (RTS)?
  • Can push notifications be considered compliant with SCA RTS?
  • Why is it important to use multi-factor authentication (MFA) when accessing a cloud-based core banking system?
  • Why is it essential to have comprehensive user management in the banking software?
  • Why is it important for the modern cloud-based core banking system to be built around a general ledger and have a chart of accounts?
  • Is it possible to obtain necessary information for regulatory reporting if an institution uses a core banking system with no general ledger and chart of accounts?
  • Why is there a need for customer risk scoring and transaction risk scoring?
  • Why is it ineffective or even dangerous to outsource the risk scoring from a third party without having it as a part of the cloud-based core banking software?
  • What is DORA (Digital Operational Resilience Act)?
  • What is safeguarding in payments, and why is it required?
Modern core banking system happy robot

Banking, payments, and e-money

21
  • What is payment initiation service, and how it can be used?
  • What is a banking superapp and what does it offer?
  • What is Banking as a Service, or BaaS?
  • What is an Account Servicing Payment Service Provider?
  • Who are Third-Party Providers (TPPs), and what is their role?
  • What is Account Information Service, and how it can be used?
  • What is Original Credit Transaction (Visa and Mastercard) and how is it used in payments?
  • What is SEPA, and what types of payment transactions it facilitates?
  • What is Step2 and what types of payment transactions it supports?
  • What is Target2, and what types of payment transactions it supports?
  • What is Faster Payments (UK), and what types of payment transactions it supports?
  • What is Bacs, and what kind of payments it supports?
  • What is NACHA (USA), and what types of payments it supports?
  • What is SWIFT, and what types of payments it supports?
  • What is a correspondent bank, and what is its role in payments?
  • What is a ledger-centric architecture in core banking systems?
  • What is the difference between a core ledger and a payments ledger?
  • How does event-driven architecture work in payment platforms?
  • What is the role of message queues in payment systems?
  • How do core banking systems achieve high availability and fault tolerance?
  • How does multi-tenant architecture vs single tenant in SaaS core banking platforms compare?
View Categories
  • Home
  • Knowledge Base
  • Banking, payments, and e-money
  • How does event-driven architecture work in payment platforms?

How does event-driven architecture work in payment platforms?

8 min read

How_does_event_driven_architecture_work_in_payment_platforms

Event-driven architecture (EDA) is a software design pattern in which system components communicate by producing and consuming structured records of significant occurrences, called events, rather than by making direct calls to one another. In a payment platform built on event-driven architecture, every meaningful state change, whether a customer initiates a payment, a payment reaches settlement, a compliance rule is triggered, or a network connection changes status, is published as an event to a shared message infrastructure. Other components of the platform subscribe to the events relevant to their function and react to them independently, without needing to know which other components produced them or how those components are implemented.

This contrasts with a synchronous, request-response architecture, in which a component that needs information or needs to trigger an action must make a direct call to another component and wait for a response before continuing. In a payment platform processing high transaction volumes across multiple payment rails simultaneously, synchronous coupling between components creates bottlenecks, introduces latency, and means that the failure or slowdown of any single component can block processing across the entire platform.

As illustrated in a typical event-driven payment processing flow, a customer submits a payment instruction through a banking application. The payment service publishes a PaymentInitiated event to the platform’s event infrastructure. The compliance service consumes this event independently and performs AML screening, publishing a ComplianceCheckPassed or ComplianceCheckFailed event in response. The payment routing service consumes the ComplianceCheckPassed event and determines the appropriate payment rail, publishing a PaymentRouted event.

The network connectivity service consumes the PaymentRouted event and submits the payment instruction to the relevant payment network, publishing a PaymentSubmitted event. Upon receiving settlement confirmation from the network, it publishes a PaymentSettled event. The ledger posting service consumes the PaymentSettled event and creates the corresponding core ledger entries. The notification service consumes the same PaymentSettled event and sends a confirmation to the customer. Throughout this flow, each service operates independently and asynchronously, with no direct dependencies on one another.

Key Takeaways: #
  • Event-driven architecture (EDA) is a software design pattern in which system components communicate by producing and consuming events, rather than through direct, synchronous calls between services. In payment platforms, this means that every significant occurrence, such as a payment initiation, a status change, a settlement confirmation, or a compliance alert, is published as an event that other components can consume and act upon independently
  • For payment institutions and e-money institutions, event-driven architecture provides the real-time processing capability, fault tolerance, and audit trail completeness that modern payment operations require, particularly when operating across multiple payment rails simultaneously such as SEPA Instant, Faster Payments, and card networks
  • Event-driven architecture supports DORA’s digital operational resilience requirements by decoupling system components so that the failure of one service does not cascade to others, enabling institutions to maintain partial operational capability during ICT incidents and to recover individual components without taking the entire payment platform offline

The Core Components of Event-Driven Architecture #

Events: An event is a structured, immutable record of something that has occurred within the system at a specific point in time. In a payment platform, events represent state changes in the payment lifecycle, such as PaymentInitiated, ComplianceCheckCompleted, PaymentRouted, PaymentSettled, PaymentFailed, or RefundRequested. Each event contains the data necessary to describe what happened, including the payment identifier, the relevant amounts and account references, the timestamp, and any status or error information. Events are immutable, meaning that once published, they cannot be modified. If a correction is required, a new corrective event is published rather than the original event being altered.

Event producers: Event producers are the system components responsible for publishing events when a state change occurs within their domain. In a payment platform, the payment initiation service produces PaymentInitiated events, the network connectivity service produces PaymentSettled and PaymentFailed events, and the compliance service produces ComplianceCheckCompleted events. Each producer is responsible only for publishing events accurately and promptly when the relevant state change occurs. It has no knowledge of which other components will consume those events or what actions they will take in response.

Event consumers: Event consumers are the system components that subscribe to specific event types and perform actions in response to them. In a payment platform, the ledger posting service consumes PaymentSettled events to create core ledger entries, the notification service consumes the same events to send customer confirmations, and the regulatory reporting service consumes events across the payment lifecycle to update transaction volume counts for regulatory submissions. Multiple consumers can subscribe to the same event type and process it independently and simultaneously, without any coordination between them.

Event broker or message infrastructure: The event broker is the infrastructure component that receives events from producers, stores them durably, and delivers them to consumers. In payment platforms, this function is typically performed by a dedicated message streaming platform such as Apache Kafka or a message queue system such as RabbitMQ.

The event broker decouples producers from consumers, ensuring that events are not lost if a consumer is temporarily unavailable and that consumers can process events at their own pace without blocking the producer. The choice of event broker technology has significant implications for the performance, durability, and ordering guarantees of the event-driven architecture, and is discussed in more detail in the accompanying article on message queues in payment systems.

Key Advantages of Event-Driven Architecture in Payment Platforms #

Asynchronous processing and throughput: Because event producers do not wait for consumers to process events before continuing, event-driven architecture enables high throughput processing of payment transactions. The payment initiation service can publish events and immediately accept the next payment instruction, regardless of how long the downstream compliance check, routing, or ledger posting takes to complete. This asynchronous model removes the throughput ceiling that synchronous processing imposes, enabling payment platforms to handle large volumes of concurrent transactions without degradation in processing speed.

Loose coupling and independent scaling: Each service in an event-driven payment platform is decoupled from the others, communicating only through events rather than through direct dependencies. This loose coupling allows individual services to be scaled independently in response to their specific demand, to be updated or replaced without requiring coordinated changes to other services, and to be deployed on different infrastructure to match their specific performance requirements. The compliance service can be scaled to handle increased AML screening volume without scaling the payment initiation service, and the ledger posting service can be updated to support new account categories without modifying the payment routing service.

Fault tolerance and resilience: In an event-driven architecture, the failure of a consumer service does not block the event producer or other consumers. Events published to the broker are stored durably and delivered to the consumer when it recovers. This means that a temporary failure in the notification service, for example, does not prevent payments from being processed, settled, and posted to the ledger. The notification service simply processes its backlog of events when it comes back online. This fault isolation directly supports the operational resilience requirements of DORA, limiting the impact of individual component failures on the overall availability of the payment platform.

Complete and auditable event history: Because every state change in the payment lifecycle is recorded as an immutable event, the event log provides a complete and chronologically ordered history of everything that has occurred within the payment platform. This event history supports regulatory compliance by providing a tamper-resistant audit trail that can be used to reconstruct the exact sequence of events for any individual payment, from initiation through to settlement or failure, including all compliance checks performed, all routing decisions made, and all ledger postings created.

This level of auditability is particularly relevant under DORA, which requires institutions to maintain comprehensive ICT-related incident logs, and under AML frameworks, which require institutions to be able to demonstrate the compliance checks applied to individual transactions.

Real-time responsiveness: Event-driven architecture enables real-time responsiveness across the payment platform, as each service reacts to events as they are published rather than polling for updates or waiting for scheduled batch processes. For payment institutions operating on real-time payment rails such as SEPA Instant Credit Transfer and Faster Payments, where end-to-end processing must complete within ten seconds, the real-time event propagation of an event-driven architecture is an operational necessity rather than a performance optimisation.

Event-Driven Architecture and Regulatory Compliance #

Event-driven architecture has specific implications for regulatory compliance in payment platforms. The immutable event log provides the complete, chronologically ordered audit trail that regulators and auditors require to verify that compliance checks were performed correctly and in the right sequence for each transaction. Under AML frameworks, the ability to demonstrate that every transaction was screened against the relevant watchlists and risk rules before settlement is a core compliance requirement, and the event log provides this evidence naturally as a byproduct of the architecture rather than requiring separate compliance logging infrastructure.

Under DORA, the event log also supports the ICT incident reporting obligations that apply to payment institutions and e-money institutions. When a major ICT incident occurs, the institution must be able to reconstruct the sequence of events leading up to and during the incident to support its regulatory notification. The event history maintained by an event-driven architecture provides exactly this capability, enabling the institution to produce a precise timeline of system events for any given period.

FAQ:

What is the difference between event-driven architecture and microservices architecture?

  • Microservices architecture and event-driven architecture are complementary but distinct concepts. Microservices architecture describes how a system is structured, dividing it into small, independently deployable services each responsible for a specific business function. Event-driven architecture describes how those services communicate with each other.
  • A payment platform can implement microservices architecture with synchronous, request-response communication between services, or with event-driven, asynchronous communication. In practice, the combination of microservices architecture and event-driven communication is the most common approach in modern payment platforms, as it provides both the independent deployability of microservices and the loose coupling and fault tolerance of event-driven communication. The two architectural patterns are therefore typically used together rather than chosen as alternatives.

How does event-driven architecture handle payment failures and error correction?

  • In an event-driven payment platform, a payment failure is represented by a PaymentFailed or equivalent event published by the service that detected the failure, containing the failure reason and all relevant payment details. Services that need to respond to payment failures, such as the notification service sending a failure alert to the customer, the ledger posting service reversing any provisional entries, or the compliance service updating the customer’s risk profile, consume this event independently and perform their respective actions.
  • Error correction is handled by publishing new corrective events rather than modifying previously published events, preserving the immutability of the event history. This approach ensures that the complete history of the payment, including the failure and the corrective actions taken, is captured in the event log and is available for audit and regulatory review.
Updated on April 29, 2026
Share This Article :
  • Facebook
  • X
  • LinkedIn

Powered by BetterDocs

Table of Contents
  • Key Takeaways:
  • The Core Components of Event-Driven Architecture
  • Key Advantages of Event-Driven Architecture in Payment Platforms
  • Event-Driven Architecture and Regulatory Compliance
Pages

  • Features
  • About
  • Pricing
  • Contact
Resources

  • Knowledge base
  • Blog
ISO sertificate

Copyright © 2026 Baseella Ltd

  • Privacy
  • Cookies
  • Terms and Conditions

Stay Ahead in Banking Innovation!

 

Subscribe to our blog and get the latest insights on core banking technologies, industry trends, and expert advice delivered straight to your inbox.

✅ Exclusive Content: From in-depth articles and case studies to interviews with banking leaders and tech innovators.

✅ Early Access: Be the first to know about our newest features, updates, and exclusive offers.

✅ Empower Your Institution: Gain actionable tips and strategies to drive digital transformation and enhance your banking services.

Join our community of banking professionals today!

Loading