Accounts
Query for bank accounts.
GET Accounts
POST
https://api.finqware.com/v1/accounts/get
Get account data.
Request Body
[
{
"data": {
"account_schemes": [
{
"identification": "CZ6355...254079",
"scheme_name": "IBAN"
},
{
"identification": "BRDEROBUXXX",
"scheme_name": "BICFI"
}
],
"balances": [
{
// always a positive decimal number.
// for overdraft/negative balances check the credit_debit_indicator.
"balance_amount": "123.34",
"balance_currency": "RON",
// check the balances docs page for all supported types
"balance_type": "Expected",
"credit_limit_included": false,
// credit -> positive or zero amount
// debit -> negative amount (overdraft)
"credit_debit_indicator": "credit"
}
],
"account_sub_type": "Account sub-type",
"account_type": "Personal current account",
"currency": "RON",
"name": "",
"nickname": ""
},
"id": "f3dc1a92-...-b715a988553d",
"servicer_id": "e5c11467-...-52a6492054d8",
"servicer_name": "XYZ Bank",
"timestamp": "2021-02-01T13:14:52Z"
}
]
// check the errors docs page for details
{
"id": "uuid",
"type": "invalid_request",
"http": 400,
"code": "invalid_client_id",
"message": "error message"
}
Last updated