Getting started
List accounts
This guide show how to list accounts for a user. It assumes that you have previously created a Consent that the user has authorised. See the Create Consent guide on how to implement this.
Variables and constants used in the guide
Name | Description |
---|---|
accessToken | An access token with scope "accountinformation private" . |
bic | The BIC code for the bank. |
consentID | The id of the Consent. |
psuUserAgent | The User-Agent from the user's request. |
psuIpAddress | The user's IP address |
xRequestID | Most requests require the header X-Request-ID , which is a uuid. This will be a unique identifier of your request and will be useful in case you need support. Make sure to create a new GUID for every individual request. In this guide, we assume that you store this value in the variable xRequestID . |
Endpoint
GET /psd2/accountinformation/v1/accountsjavascript
Request headers
Accept: "application/json", Authorization: "Bearer " + accessToken, Consent-ID: consentID, Content-Type: "application/json", X-BicFi: bic, X-Request-ID: xRequestID, PSU-IP-Address: psuIpAddress,javascript
Result
accounts = response.body.accountsjavascript