improved

V2 - Enhanced Ledger Entry Lines with Lettering Information

The List ledger entry lines and the Retrieve a Ledger entry line endpoints responses have been enhanced to include information about lettered entries. The response now includes a new lettered_ledger_entry_lines object with the following properties:

  • ids: An array of integers containing all ledger entry line IDs that share the same lettering, including the ID of the entry line itself. This array will be empty if the entry line is not lettered.
  • url: A URL to fetch all lettered ledger entry lines associated with this entry line.

Example Response

{
  "lettered_ledger_entry_lines": {
    "ids": [42, 1271004],
    "url": "https://app.pennylane.com/api/external/v2/ledger_entry_lines/42/lettered_ledger_entry_lines"
  }
}

Enhanced Response for Lettered Ledger Entry Lines

The List ledger entry lines lettered to a given ledger entry line endpoint (GET /api/external/v2/ledger_entry_lines/{id}/lettered_ledger_entry_lines) has been improved to return complete ledger entry line information instead of just IDs. The response is now aligned with the data structure returned in the List ledger entry lines and in the Retrieve a Ledger entry line

  • Debit and credit amounts
  • Labels
  • Associated ledger account and journal information
  • Dates
  • Creation and update timestamps