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

Report Query

Last updated 1 year ago

Was this helpful?

CtrlK

Was this helpful?

The GET /report method lists the reports requested and available to download.

Response example:

{
  "report": [
    {
      "report_name": "accounts",
      "file_name": "accounts_20230301_20230605112617001.csv",
      "requested_at": "2023-06-05T11:26:17.001Z"
      "status": "pending",
      "url": "",
      "created_at": "",
      "expires_at": ""
    },
  {
      "report_name": "accounts",
      "file_name": "accounts_20230301_20230604112617325.csv",
      "requested_at": "2023-06-04T11:26:17.325Z"
      "status": "available",
      "url": "https://store-files-in-s3.s3.ap-south-1.amazonaws.com/accounts_20230301_20230604112617325.csv",
      "created_at": "2023-06-07T11:26:17.325Z",
      "expires_at": "2023-06-08T11:26:17.325Z"
    },  
  ]
}