Get Account and Transactions Lists

General information

  • To access Account Information Services (PSD2-AIS) API, your DevApp should include PSD2-AIS 1.0 API product
  • Access Token must include psd2-ais scope
  • You, as TPP, must have AISP license and your QWAC certificate must have this role included
  • Postman collection of PSD2-AIS API is here

Get Account List

To get list of your bank accounts use Get Account List API.

In the response you will receive list of sub-accounts that you have access to. Use resourceId parameter as an account identifier where required when calling other AIS APIs.

Sample Response

{
    "accounts": [
        {
            "resourceId": "LT763740020000000002-EUR",
            "currency": "EUR",
            "status": "enabled",
            "balances": [
                {
                    "balanceAmount": {
                        "currency": "EUR",
                        "amount": "98990493671.67"
                    },
                    "balanceType": "interimAvailable"
                }
            ],
            "displayName": "Main account",
            "iban": "LT763740020000000002"
        }, ...
    ]
}

Get Transactions List

To get Statement (Transaction list), use above mentioned resourceId and call Read Transaction List API.

 

Undefined