DollarBooks
Modules

Chart of Accounts

Account data used by LedgerHQ classification, reclass, and reports.

The chart of accounts is part of the public LedgerHQ integration contract because bank transactions and journal lines classify activity against these accounts.

REST Surface

MethodPathPurpose
GET/api/v1/accountsList organization accounts
POST/api/v1/accountsCreate an account
GET/api/v1/accounts/:idGet an account and ledger detail
PATCH/api/v1/accounts/:idUpdate account metadata
DELETE/api/v1/accounts/:idDelete an unused account

Account Types

TypeUsed for
assetBank accounts, cash, receivables, other owned balances
liabilityPayables, loans, tax payable
equityOwner equity and retained earnings
revenueIncome categories
expenseSpend categories used by LedgerHQ classification

LedgerHQ Usage

  • LedgerHQ can list accounts before importing or classifying bank activity.
  • accountId is required by /api/v1/bank-transactions/:id/reclassify.
  • If a transaction is linked to an editable journal entry, reclass updates the selected non-bank journal line to the target account.
  • All money amounts related to account balances are integer cents unless a route explicitly says otherwise.

MCP Tools

  • list_accounts
  • get_account
  • create_account
  • update_account
  • delete_account

On this page