Retrieve Bank Balance (by id)

GET {{base_url}}/banking/v2/balances/:balanceId

This endpoint can be used to retrieve a particular bank balance by providing a balance id.

Path variables

FieldTypeDescription
balanceIdstringUnique identifier for balance

Attributes

FieldTypeDescription
idstringBalance Id
accountIdstringUnique identifier for the account
bankIdintegerUnique identifier for the bank
currencystringAccount currency
datedatetimeBalance date
amountintegerBalance amount
typestringTransaction type {DEBIT,CREDIT}
statusstringBalance status {CLOSINGAVAILABLE, CLOSINGBOOKED, EXPECTED, FORWARDAVAILABLE, INFORMATION, INTERIMAVAILABLE, INTERIMBOOKED, OPENINGAVAILABLE, OPENINGBOOKED, PREVIOUSLYCLOSEDBOOKED}
externalIdstringAn Id linked to an external source
sourcestringSource of data import {MANUALIMPORT, OPENBANKING}

Error Messages

ConditionResponse StatusResponse Body
Invalid balanceId404 Not Found
Invalid partnerId403 Forbidden
Invalid companyId403 Forbidden

HEADERS

KeyDatatypeRequiredDescription
Content-Typestring
X-Api-Keystring
X-Partner-Idstring
Authorizationstring
X-Company-Idstring

RESPONSES

status: OK

{"id":"balanceId3456","bankId":7,"accountId":"accountId3579","date":"2020-10-04T00:00Z","amount":"15647.35","currency":"GBP","type":"CREDIT","status":"CLOSINGBOOKED","externalId":"","source":"OPENBANKING"}