The Berlin Group Logo

The Berlin Group openFinance API Framework
Foundational course

Module 2: The Baseline - Core PSD2 Services (NextGenPSD2)

This module examines the three core services that were mandated by PSD2 and which form the foundation of the NextGenPSD2 framework. These services—AIS, PIS, and FCS—are now integrated as the compliance baseline within the broader openFinance API Framework.

Account Information Services (AIS)

The Account Information Service enables a licensed TPP, acting as an Account Information Service Provider (AISP), to retrieve payment account information on behalf of a PSU, provided the PSU has given their explicit consent. This service is the cornerstone of many fintech applications, such as personal finance management (PFM) tools that aggregate data from multiple bank accounts.

The key API calls for AIS are:

Payment Initiation Services (PIS)

The Payment Initiation Service allows a licensed TPP, acting as a Payment Initiation Service Provider (PISP), to initiate a payment order from a PSU's account to a beneficiary. This service enables innovative payment solutions, such as direct account-to-account payments at e-commerce checkouts.

The framework is designed to be flexible and supports a wide range of payment products to cater to different market needs:

The primary API calls for PIS include:

Confirmation on the Availability of Funds (FCS/CAF)

The Confirmation on the Availability of Funds service is a more specialised service designed for TPPs that issue card-based payment instruments (PIISPs). It allows the PIISP to send a simple request to the PSU's ASPSP to confirm whether sufficient funds are available on the account to cover a specific transaction amount at that moment. This check happens before the payment is authorised, helping to reduce the risk of declined transactions.

The service is intentionally lightweight. The key API call is:

Managing Access: The Consent Management Lifecycle

A fundamental principle underpinning all services is that no action can be taken without the PSU's explicit and informed consent. The framework's architecture reflects this by treating consent as a distinct, manageable resource, which enhances security and transparency for the user. Instead of bundling a data request with an implicit consent, the process is separated into two distinct steps. First, the TPP creates a consent resource that explicitly details the scope of the requested access (e.g., which accounts, what data, and for how long). Second, the PSU is asked to authorise that specific, well-defined consent object using an SCA flow.

This separation provides several benefits. It makes the PSU's permission granular and auditable. The PSU is not granting open-ended access but is authorising a very specific, time-limited request. This consent object can then be managed throughout its lifecycle independently of any data access, aligning with GDPR principles of user control and building trust in the ecosystem.

The API provides dedicated endpoints for managing the consent lifecycle:

Module 2 Quiz

1. Which of the following API calls is used to initiate the creation of an account information consent?

  • A. GET /v1/accounts
  • B. POST /v1/consents
  • C. POST /v1/payments/sepa-credit-transfers
  • D. GET /v1/consents/{consentId}

2. The Confirmation on the Availability of Funds (FCS) service is primarily intended for which type of TPP?

  • A. Account Information Service Providers (AISP)
  • B. Payment Initiation Service Providers (PISP)
  • C. Payment Instrument Issuing Service Providers (PIISP)
  • D. Technical Service Providers

3. What is the fundamental architectural principle that separates the request for access from the actual data retrieval in the AIS flow?

  • A. The use of JSON instead of XML.
  • B. The requirement for TLS 1.2.
  • C. The creation and authorisation of a dedicated consent resource before any data is accessed.
  • D. The support for bulk payments.