Skip to main content

The LedgerBalance object

Summary of a ledger account balance. Provides totals for debits, credits, and the net balance for a specific account.

Fields

FieldTypeDescription
account
REQUIRED
stringAccount name in the ledger
debit
REQUIRED
numberTotal debit amount
credit
REQUIRED
numberTotal credit amount
balance
REQUIRED
numberNet balance (credit - debit)

Example

{
"account": "string",
"debit": 1,
"credit": 1,
"balance": 1
}