Journal Entries
Posted accounting entries behind reports and transaction reclass.
Journal entries are documented here only as the accounting spine behind the LedgerHQ workflow. They matter because financial reports are built from posted entries, and transaction reclass may update a linked non-bank journal line. Partner apps should prefer resource posting endpoints for purchases, deposits, transfers, and bill payments; use journal entries for true journal adjustments.
REST Surface
| Method | Path | Purpose |
|---|---|---|
GET | /api/v1/entries | List journal entries |
POST | /api/v1/entries | Create a draft entry |
GET | /api/v1/entries/:id | Get an entry with lines |
POST | /api/v1/entries/:id/post | Post a draft entry |
POST | /api/v1/entries/:id/void | Void a posted entry |
POST | /api/v1/journal-entries | Create a balanced posted journal entry |
Scheduled Journal Entries
Scheduled journal entries are repeatable templates that generate ordinary journal entries on a due schedule. They belong with Journal Entries because the output is still a journal entry with lines, source metadata, and normal report impact.
Use scheduled entries for stable recurring adjustments such as accruals, amortization, allocations, or other balanced entries. A schedule can generate draft or posted entries, can be paused or completed, and carries traceability from each generated entry back to the source schedule.
REST routes for scheduled entries live under
/api/v1/scheduled-journal-entries. MCP tools include create, list, update,
delete, and post-due operations.
Reclass Behavior
POST /api/v1/bank-transactions/:id/reclassify updates the bank transaction's
classification fields first. If the transaction has a linked journal entry,
LedgerHQ can also update the selected non-bank journal line.
Rules:
- Period-locked entries return a validation error.
- Void entries cannot be reclassified.
- Multi-line entries require
journalLineId. - Debit and credit amounts are preserved; only the target account changes.
MCP Tools
list_entriesget_entrycreate_entrypost_entryvoid_entrycreate_journal_entrycreate_scheduled_journal_entrylist_scheduled_journal_entriesupdate_scheduled_journal_entrydelete_scheduled_journal_entrypost_due_scheduled_journal_entries