# Balance updated Fired when the balance of a banking account has been added or updated. Contains the current balances and account identifiers. Related endpoint: Get account balances Endpoint: POST banking.account.balance.updated Version: 1.0.0 ## Request fields (application/json): - `id` (string, required) Unique identifier of the account. - `iban` (string,null) International Bank Account Number. - `bban` (string,null) Basic Bank Account Number. - `currency` (string,null) ISO 4217 Alpha 3 currency code. - `balances` (array) Current balances of the account. - `balances.balanceAmount` (object) An amount with currency. - `balances.balanceAmount.amount` (string) The amount as a decimal string. - `balances.balanceType` (string) Type of account balance. Enum: "closingBooked", "openingBooked", "expected", "interimAvailable", "interimBooked", "forwardAvailable", "nonInvoiced" - `balances.referenceDate` (string,null) Reference date of the balance. - `balances.lastChangeDate` (string,null) Date of the last change to this balance. - `_links` (object) HATEOAS links. - `_links.self` (object) A HATEOAS link. - `_links.self.href` (string) URI of the linked resource. - `_links.self.verb` (string) HTTP verb for the link. Enum: "get", "post", "put", "delete"