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. REPORT

Request a report

Last updated 1 year ago

Was this helpful?

CtrlK

Was this helpful?

The system provides some standard reports for consumption. Reports are generated on demand and available for download for 24 hours.

The reports available by default are:

Report
Filter
Description

ledger

date from, date to

List of all journals ordered by creation date

settled_at_balance_sheet

date and currency

Balance sheet by accounting date (settled_at)

consolidated_balance_sheet

date and currency

Consolidated balance sheet of all tenants

The reports will be generated as files in CSV format and their file name consists of the name of the report followed by the filter used and request timestamp.

The POST /report/request must be performed to request a report to be created.

Report request example:

Response example:

accounts

date

List of all existing accounts, their currencies and balances and classifications based on the current Chart of Accounts

transactions

date from, date to

List of transactions for the period

daily_book

date from, date to

List of all entries ordered by creation date

{
  "report_type": "accounts",
  "date": "2024-03-01"
}
{
  "file_name": "accounts_20240301_20240303112617325.csv",
  "status": "processing"
}