Avaloq · Schema
Account
Bank account details
BankingDigital BankingFinancial ServicesFintechPaymentsWealth Management
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Avaloq account ID |
| accountNumber | string | IBAN or account number |
| accountName | string | Account display name |
| currency | string | ISO 4217 currency code |
| balance | number | Current balance |
| availableBalance | number | Available balance after holds |
| status | string | |
| customerId | string | Owning customer ID |
| openedDate | string | |
| accountType | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Account",
"title": "Account",
"type": "object",
"description": "Bank account details",
"properties": {
"id": {
"type": "string",
"description": "Avaloq account ID",
"example": "ACC-001234"
},
"accountNumber": {
"type": "string",
"description": "IBAN or account number",
"example": "CH56048350012345678009"
},
"accountName": {
"type": "string",
"description": "Account display name",
"example": "Main Current Account"
},
"currency": {
"type": "string",
"description": "ISO 4217 currency code",
"example": "CHF"
},
"balance": {
"type": "number",
"description": "Current balance",
"example": 250000.0
},
"availableBalance": {
"type": "number",
"description": "Available balance after holds",
"example": 245000.0
},
"status": {
"type": "string",
"enum": [
"ACTIVE",
"INACTIVE",
"CLOSED",
"BLOCKED"
],
"example": "ACTIVE"
},
"customerId": {
"type": "string",
"description": "Owning customer ID",
"example": "CUST-001234"
},
"openedDate": {
"type": "string",
"format": "date",
"example": "2020-01-15"
},
"accountType": {
"type": "string",
"enum": [
"CURRENT",
"SAVINGS",
"INVESTMENT",
"CUSTODY"
],
"example": "CURRENT"
}
}
}