ACCOUNTS_BASIC
- required to get basic account information such as name, iban and currency.ACCOUNTS_DETAILS
- required to get the full account information as account id, name, type, iban and currency.ACCOUNTS_BALANCES
- required to get account balance. Take a note that it cannot be used without the ACCOUNTS_DETAILS
scope since an account id is required. Therefore, the ACCOUNTS_DETAILS
scope will be inserted by default if not provided.ACCOUNTS_TRANSACTIONS
- required to get account transactions. Take a note that it cannot be used without the ACCOUNTS_DETAILS
scope since an account id is required. Therefore, the ACCOUNTS_DETAILS
scope will be inserted by default if not provided./auth
endpoint with the Request-Id
, Redirect-URL
and corresponding scope
. The service will return an authorizationLink
.authorizationLink
. After the successful authorization, the client will be redirected back to your Redirect-URL
with code
, requestId
and status=success
query parameters. If authorization does not succeed, you will receive a requestId
and a status=failure
.accessToken
provides the access to account details, balances, and transactions using /ais/accounts/{accountId}/*
endpoints.