Account and Transaction API Specification - v3.0
- 1 Version Control
- 2 Overview
- 3 Basics
- 3.1 Overview
- 3.1.1 Steps
- 3.1.2 Sequence Diagram
- 3.2 Idempotency
- 3.3 Release Management
- 3.3.1 Account Access Consent
- 3.3.2 Account Information Resources
- 3.3.2.1 GET
- 3.1 Overview
- 4 Endpoints
- 5 Security & Access Control
- 5.1 Scopes
- 5.1.1 Scopes
- 5.2 Grants Types
- 5.3 Consent Authorisation
- 5.3.1 Consent Elements
- 5.3.1.1 Permissions
- 5.3.1.1.1 Detail Permissions
- 5.3.1.1.2 Reversing Entries
- 5.3.1.2 Expiration Date Time
- 5.3.1.3 Transaction To/From Date Time
- 5.3.1.1 Permissions
- 5.3.2 Account Access Consent Status
- 5.3.3 Consent Re-authentication
- 5.3.1 Consent Elements
- 5.4 Consent Revocation
- 5.5 Changes to Selected Account(s)
- 5.6 Risk Scoring Information
- 5.1 Scopes
- 6 Data Model
- 7 Swagger Specification
Version Control
Version | Date | Author | Comments |
|---|---|---|---|
3.0-draft1 | 18-Apr-2018 | OB R/W API Team | Initial draft for Version 3.0
|
3.0-draft3 | 18-May-2018 | OB R/W API Team | Renamed "Account Request" to "Account Access Consent" renamed AccountRequestId to ConsentId In Endpoint section - removed reference to "must respond with a 404 (Not Found) for requests to that URL." and moved to Read Write API page. |
3.0-draft4 | May 30, 2018 | OB R/W API Team | Draft4 changes:
|
3.0-draft5 | Jun 8, 2018 | OB R/W API Team | Errata:
Draft5 changes:
|
3.0-draft6 | Jul 2, 2018 | OB R/W API Team |
|
3.0-draft7 | Jul 13, 2018 | OB R/W API Team | Errata:
Updates:
|
3.0-RC2 | Jul 19, 2018 | OB R/W API Team | Errata:
Updates:
|
3.0-RC3 | Aug 6, 2018 | OB R/W API Team | Added a section on Security / Consent Authorisation / Consent Re-authentication to clarify that PSUs can be re-authenticated as per definitions in the root document. Updated Security / Consent Authorisation / Changes to Selected Accounts to reflect that selected accounts may change at the point of re-authentication Updated references to consent "re-authorisation" to consent "re-authentication" Added Swagger-based API specification files encoded in JSON and YAML. |
3.0 | Sep 7, 2018 | OB R/W API Team | This is the baseline version. No change from RC3. Swagger URLs updated to point to latest stable version. |
Overview
This specification describes the Account Information and Transaction API flows and payloads.
The API endpoints described here allow an Account Information Service Provider ('AISP') to:
Register an intent to retrieve account information by creating an "account access consent". This registers the data "permissions", expiration and historical period allowed for transactions / statements - that the customer (PSU) has consented to provide to the AISP; and
Subsequently, retrieve account and transaction data.
This specification should be read in conjunction with Read/Write Data API Specification which provides a description of the elements that are common across all the Read/Write Data APIs.
Document Structure
This document consists of the following parts:
Overview: Provides an overview of the API and the key decisions and principles that contributed to the specification.
Basics: The section identifies the resources, operations that are permitted on those resources, and various special cases.
Endpoints: Provides the list of endpoints for the API specification. The individual end-points are documented in separate pages along with the data model that the employ and usage examples.
Security & Access Control: Specifies the means for AISPs and PSUs to authenticate themselves and provide consent.
Data & Payloads: Documents data structures and data architecture that applies to all the end-points. End-point specific data structures are documented in separate pages along with the end-points that employ the data structure.
Swagger Specifications: Provides links to the swagger specifications for the APIs.
Basics
Overview
The figure below provides a general outline of an account information requests and flow using the Account Info APIs.
Steps
Step 1: Request Account Information
This flow begins with a PSU consenting to allow an AISP to access account information data.
Step 2: Setup Account Access Consent
The AISP connects to the ASPSP that services the PSU's account(s) and creates an account-access-consent resource. This informs the ASPSP that one of its PSUs is granting access to account and transaction information to an AISP. The ASPSP responds with an identifier for the resource (the ConsentId - which is the intent identifier). This step is carried out by making a POST request to /account-access-consents endpoint.
The account-access-consent resource will include these fields - which describe the data that the PSU has consented with the AISP:
Permissions - a list of data clusters that have been consented for access
Expiration Date - an optional expiration for when the AISP will no longer have access to the PSU's data
Transaction Validity Period - the From/To date range which specifies a historical period for transactions and statements which may be accessed by the AISP
An AISP may be a broker for data to other parties, and so it is valid for a PSU to have multiple account-access-consents for the same accounts, with different consent/authorisation parameters agreed.
Step 3: Authorise Consent
The AISP requests the PSU to authorise the consent. The ASPSP may carry this out by using a redirection flow or a decoupled flow.
In a redirection flow, the AISP redirects the PSU to the ASPSP.
The redirect includes the ConsentId generated in the previous step.
This allows the ASPSP to correlate the account-access-consent that was setup.
The ASPSP authenticates the PSU.
The ASPSP updates the state of the account-access-consent resource internally to indicate that the account access consent has been authorised.
Once the consent has been authorised, the PSU is redirected back to the AISP.
In a decoupled flow, the ASPSP requests the PSU to authorise consent on an authentication device that is separate from the consumption device on which the PSU is interacting with the AISP.
The decoupled flow is initiated by the AISP calling a back-channel authorisation request.
The request contains a 'hint' that identifies the PSU paired with the consent to be authorised.
The ASPSP authenticates the PSU and updates the state of the account-access-consent resource internally to indicate that the account access consent has been authorised.
Once the consent has been authorised, the ASPSP can make a callback to the AISP to provide an access token.
The principle we have agreed is that consent is managed between the PSU and the AISP - so the account-access-consent details must not be changed (with the ASPSP) in this step. The PSU will only be able to authorise or reject the account-access-consent details in its entirety.
During authorisation - the PSU selects accounts that are authorised for the AISP request (in the ASPSP's banking interface).
Step 4: Request Data
This is carried out by making a GET request the relevant resource.
The unique AccountId(s) that are valid for the account-access-consent will be returned with a call to GET /accounts. This will always be the first call once an AISP has a valid access token.
Sequence Diagram
Idempotency
The API endpoints for creating account-access-consent resources are not idempotent.
If a time-out error occurs - then we would expect an AISP to create a new account-access-consent resource - rather than try with the same resource.
Release Management
This section overviews the release management and versioning strategy for the Account And Transaction API.
Account Access Consent
The account-access-consent resource is referred to as an account-request resource in v1 and v2 of this specification. For clarity, it has been generalised to 'Consent' in the detail below.
POST
An AISP must not create a Consent on a newer version, and use it on a previous version
E.g., A ConsentId for an account-access-consent created in v3, must not be used to access v2 endpoints
GET
An AISP must not access a Consent on an older version, via the Id for a Consent created in a newer version
E.g., An account-access-consent created in v3 accessed via v2 account-request
An ASPSP must allow a Consent to be accessed in a newer version
An ASPSP must ensure Permissions set associated with a Consent are unchanged when accessed in a different version
E.g., An account-request created in v2 will have the same details when accessed via v2 and v3 (as an account-access-consent)
An ASPSP must ensure a Consent's fields are unchanged when accessed in a different version
An ASPSP may allow expired Consents to be accessed in a newer version
An ASPSP may choose to populate new fields introduced in a resource from previous version sensible defaults (if mandatory) or not populate at all (if not mandatory)
E.g., OBReadResponse1/Data/StatusUpdateDateTime introduced in v2 accessed with v1 AccountRequestId can be populated with Last accessed date time, if not already available in the system of records
DELETE
An AISP must not delete a Consent on an older version, via an Id for a Consent created in a newer version
E.g., An account-access-consent is created in v3, and request DELETE on v2
An ASPSP must support deleting a Consent from a previous version via a newer version
E.g., An account-request is created in v2, and request DELETE on v3
Account Information Resources
GET
An AISP may use a token that is bound to a Consent in a previous version, to access an endpoint of a newer version
An AISP may use an Id for a Consent created in a previous version to retrieve Account Information resources in a newer version
E.g., AccountRequestId from v2 can be used as ConsentId in v3, to GET /accounts
An AISP must not use an Id for a Consent from a newer version to access Account Information resources in a previous version
E.g., ConsentId for an account-access-consent created in v3, must not be used to access v2 Account Information endpoints
An AISP must not use an Id for a Consent from a previous version to access a resource introduced in a newer version (as the Consent will not have Permissions required to access the new resource)
An ASPSP must allow an AISP to use an Id for a Consent from a previous version to access Account Information resource endpoints in a newer version
E.g., AccountRequestId created in v2 must be allowed to access Account Information resource endpoints in v3
An ASPSP must reject the request to access a resource, for which a Consent's Permissions set doesn't permit
An ASPSP may choose to populate new fields introduced in a resource from previous version sensible defaults (if mandatory) or not populate at all
E.g., OBReadResponse1/Data/StatusUpdateDateTime introduced in Version2 accessed with V1 AccountRequestId can be populated with Last accessed date time, if not already available in the system of records
Endpoints
This section looks at the list of available API endpoints to access Account Information and Transaction data and optionality (definitions of mandatory, conditional or optional are defined in the Principles section).
Endpoint design considerations:
Having resources that are finer grained (e.g., beneficiaries, direct-debits, standing-orders) means that we can, in the future, manage these resources (with unique identifiers)
While balances is not a typical resource - we believe having an /accounts/{AccountId}/balances endpoint is simpler to understand than a URI to expand the /accounts resource
Some ASPSPs were uncomfortable implementing the bulk APIs (e.g., /accounts, /transactions, /beneficiaries etc.) - so the bulk APIs have been specified as optional. However - the bulk endpoint for /accounts is mandatory to discover what accounts have been authorised for the account-access-consent.
We have specified the "mandatory" endpoints for the functioning of the Account Info APIs.
However, endpoints will not be "mandatory" if ASPSPs do not provide these resources via existing online channels - e.g., direct debits, standing orders, statements.
Security & Access Control
Scopes
The access tokens required for accessing the Account Info APIs must have at least the following scope:
Scopes
accounts Grants Types
AISPs must use a client credentials grant to obtain a token to access the account-access-consents resource. In the specification, this grant type is referred to as "Client Credentials".
AISPs must use an grant using a redirect or decoupled flow to obtain a token to access all other resources. In the specification, this grant type is referred to as "Authorization Code".
Consent Authorisation
The AISP must create an account-access-consent resource through a POST operation. This resource indicates the consent that the AISP claims it has been given by the PSU to retrieve account and transaction information. At this stage, the consent is not yet authorised as the ASPSP has not yet verified this claim with the PSU.
The ASPSP responds with a ConsentId. This is the intent-id that is used when initiating the authorization code grant (as described in the Trust Framework).
As part of the consent authorization flow:
The ASPSP authenticates the PSU.
The ASPSP plays back the consent (registered by the AISP) back to the PSU - to get consent authorisation. The PSU may accept or reject the consent in its entirety (but not selectively).
The ASPSP presents the PSU a list of accounts to which the consent will apply.
Once these steps are complete, the consent is considered to have been authorised by the PSU.
Consent Elements
The Account Access Consent resource consists of the following fields, which together form the elements of the consent provided by the PSU to the AISP:
Permissions: The set of data clusters that the PSU has consented to allow the AISP to access
ExpirationDateTime: The date-time up to which the consent is valid.
TransactionFromDateTime: The earliest point of the transaction / statement historical period that the PSU has consented to provide access to the AISP.
TransactionToDateTime: The last point of the transaction / statement historical period that the PSU has consented to provide access to the AISP.
Permissions
Permissions codes will be used to limit the data that is returned in response to a resource request.
When a permission is granted for a "Detail" permission code (e.g., ReadAccountsDetail), it implies that access is also granted to the corresponding "Basic" permission code (e.g., ReadAccountsBasic).
While it is duplication for a TPP to request a "Basic" permission code and the corresponding "Detail" permission code, it is not a malformed request, and the ASPSP must not reject solely on the basis of duplication.
The permissions array must contain at least ReadAccountsBasic or ReadAccountsDetail.
The following combinations of permissions are not allowed, and the ASPSP must reject these account-access-consents with a 400 response code:
Account Access Consents with an empty Permissions array
Account Access Consents with a permission code that is not supported by the ASPSP (ASPSPs are expected to publish which API endpoints are supported)
Account Access Consents with a Permissions array that contains ReadTransactionsBasic but does not contain at least one of ReadTransactionsCredits and ReadTransactionsDebits.
Account Access Consents with a Permissions array that contains ReadTransactionsDetail but does not contain at least one of ReadTransactionsCredits and ReadTransactionsDebits.
Account Access Consents with a Permissions array that contains ReadTransactionsCredits but does not contain at least one of ReadTransactionsBasic and ReadTransactionsDetail.
Account Access Consents with a Permissions array that contains ReadTransactionsDebits but does not contain at least one of ReadTransactionsBasic and ReadTransactionsDetail.
Permissions | Endpoints | Business Logic | Data Cluster Description |
|---|---|---|---|
ReadAccountsBasic | /accounts /accounts/{AccountId} |
| Ability to read basic account information |
ReadAccountsDetail | /accounts /accounts/{AccountId} | Access to additional elements in the payload | Ability to read account identification details |
ReadBalances | /balances /accounts/{AccountId}/balances |
| Ability to read all balance information |
ReadBeneficiariesBasic | /beneficiaries /accounts/{AccountId}/beneficiaries |
| Ability to read basic beneficiary details |
ReadBeneficiariesDetail | /beneficiaries /accounts/{AccountId}/beneficiaries | Access to additional elements in the payload | Ability to read account identification details for the beneficiary |
ReadDirectDebits | /direct-debits /accounts/{AccountId}/direct-debits |
| Ability to read all direct debit information |
ReadStandingOrdersBasic | /standing-orders /accounts/{AccountId}/standing-orders |
| Ability to read basic standing order information |
ReadStandingOrdersDetail | /standing-orders /accounts/{AccountId}/standing-orders | Access to additional elements in the payload | Ability to read account identification details for beneficiary of the standing order |
ReadTransactionsBasic | /transactions /accounts/{AccountId}/transactions /accounts/{AccountId}/statements/{StatementId}/transactions | Permissions must also include at least one of:
| Ability to read basic transaction information |
ReadTransactionsDetail | /transactions /accounts/{AccountId}/transactions /accounts/{AccountId}/statements/{StatementId}/transactions | Access to additional elements in the payload Permissions must also include at least one of
| Ability to read transaction data elements which may hold silent party details |
ReadTransactionsCredits | /transactions /accounts/{AccountId}/transactions /accounts/{AccountId}/statements/{StatementId}/transactions | Access to credit transactions. Permissions must also include one of: |