Ledgera
ledgera.io
  • Introduction
  • Documentation Structure
  • CORE
    • Currencies
    • Balances
      • Balance Creation
      • Balance Query
      • Bulk Balance Query
      • Balance Statements Query
    • Transactions
      • Transaction Creation
      • Transaction Query
      • Entries
  • SETUP
    • Account Rules
    • Chart of Accounts
    • Execution Rules
    • Authorization Rules
    • Billing Plan
      • Custom Entries
  • REGISTER
    • Accounts
      • Account Creation
      • Account Updates
      • Account Query
        • Account Balance Query
        • Account Bulk Balance Query
        • Account Statements Query
  • OPERATION
    • Execution
    • Authorization / Confirmation
    • Split
    • Balance Sheet
  • REPORT
    • Request a report
    • Report Query
  • MULTI-TENANCY
    • Tenant Query
Powered by GitBook
On this page
  1. REGISTER
  2. Accounts
  3. Account Query

Account Balance Query

Last updated 1 year ago

Was this helpful?

CtrlK

Was this helpful?

The balances of an account can be queried using the GET /account/{id}/balance method. The system will return all balances of all currencies for the specified account.

Example of querying balances:

Response example:

GET /account/19720852-be40-489a-a3b3-985f51a0458c/balance
{
  "data": [
    {
      "id": "a6eec3a6-682b-4701-a139-8cfcdb07769e",
      "currency": "brl",
      "type": "available",
      "amount": 159660,
      "seq_num": 56
    }
  ]
}