BooksBankAccountDto
A bank account held in a client's own books.
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The platform's identifier for the account. |
The platform's identifier for the account. | ||
| name | string | The account's name in the books. |
The account's name in the books. | ||
| accountNumber | string | The account number, where the platform exposes it — often partially masked. |
The account number, where the platform exposes it — often partially masked. | ||
| currency | string | ISO currency code, where the platform reports one. |
ISO currency code, where the platform reports one. | ||
| balance | number | The balance the books hold. Null means the platform does not return balances on its accounts |
The balance the books hold. Null means the platform does not return balances on its accounts | ||
JSON Example
{
"id": "string",
"name": "string",
"accountNumber": "string",
"currency": "string",
"balance": 0
}