The LedgerBalance object
Summary of a ledger account balance. Provides totals for debits, credits, and the net balance for a specific account.
Fields
| Field | Type | Description |
|---|---|---|
account REQUIRED | string | Account name in the ledger |
debit REQUIRED | number | Total debit amount |
credit REQUIRED | number | Total credit amount |
balance REQUIRED | number | Net balance (credit - debit) |
Example
{
"account": "string",
"debit": 1,
"credit": 1,
"balance": 1
}