{
    "id": null,
    "uvan": null,
    "name": null,
    "currency": null,
    "reference": null,
    "description": null,
    "balance": {
        "available": {
            "currency": null,
            "value": null
        }
    },
    "createTime": null,
    "updateTime": null,
    "metadata": null
}
A Financial Account is a logical wallet or ledger unit that holds and tracks money for a user or entity. It has a unique identifier, a display name (like “Main Wallet”), and is tied to a specific currency (e.g., SLE, USD).
It supports optional external references (for reconciliation with external systems) and includes metadata for tagging or categorization.
It may also expose an available balance and audit fields like createTime and updateTime.
In APIs, it acts as the source or destination of funds for transfers, payouts, or collections.
{
    "id": null,
    "uvan": null,
    "name": null,
    "currency": null,
    "reference": null,
    "description": null,
    "balance": {
        "available": {
            "currency": null,
            "value": null
        }
    },
    "createTime": null,
    "updateTime": null,
    "metadata": null
}
📋
Properties
id
string
Unique identifier of the financial account.
uvan
string
UVAN (Universal Virtual Account Number) a unique, checksum alias used for secure, error-resistant inbound transfers across Monime and external providers.
name
string
Human-readable label for the financial account, such as ‘Main Wallet’ or ‘Operations Reserve’.
currency
string
ISO 4217 currency code (e.g., ‘SLE’, ‘USD’) indicating the account’s currency.
reference
string
Optional external reference ID for this account (e.g., the account’s identifier in your internal system). Must be unique across accounts. Useful for reconciliation, tracking, or cross-system mapping.
description
string
Optional description of the account’s purpose or usage context.
balance
object
Current available balance of the financial account.
createTime
string
Timestamp when the financial account was created.
updateTime
string
Timestamp when the financial account was last modified.
metadata
object
Updated metadata for storing additional context about the account.