Account Type
Type | Description |
---|---|
Default | The default account, also known as the main wallet account. |
Settlement | The settlement account is primarily used for card acquiring and third-party electronic wallet payment gateway settlements. It records transactions and facilitates related settlements, ensuring accurate tracking and reconciliation of received payments. |
Bank | An account linked with an IBAN or account number, functioning as a conventional bank account capable of receiving and making payments, often connected to a Bank Account on the backend. |
Account Object
Field | Type | Description |
---|---|---|
id | string | The unique identifier for the account. |
type | string | The type of the account (e.g., DEFAULT, SETTLEMENT, BANK). |
asset_type | string | The type of asset held in the account. See Supported Currencies . |
balance | float | The total balance of the account. |
frozen_balance | float | The portion of the balance that is currently frozen and cannot be used. |
reversed_balance | float | The portion of the balance that is reserved. |
account_number | string | The internal account number, if applicable. |
friendly_name | string | A user-friendly name for the account, if provided. |
bank_account | object | The associated bank account, if applicable. |
status | string | The current status of the account (e.g., Active). |
available | decimal | The available balance for transactions, excluding frozen and reserved funds. |
BankAccount Object
Field | Type | Description |
---|---|---|
bank_name | string | The name of the bank where the account is held. |
bank_account | string | The specific bank account number or IBAN used for international and domestic transfers. |
bank_bic | string | The Bank Identifier Code (BIC) or SWIFT code, which uniquely identifies the bank in international transactions, ensuring correct routing of funds. |
Example
{
"id": "9ca1b6c1-8b94-41e9-bd17-549ba56563d7",
"type": "Default",
"asset_type": "EUR",
"balance": 16237.15,
"frozen_balance": 539.5,
"reversed_balance": 0,
"account_number": "2001004",
"friendly_name": "EUR-2001004",
"bank_account": {
"bank_name": "TEST Bank Company",
"bank_account": "BE83977103563715",
"bank_bic": "INCEXEWTXX"
},
"status": "Active",
"available": 15697.65
},