API Docs / Schemas / BooksBalanceSheetDto

BooksBalanceSheetDto

A balance sheet over a client's own books, as at one date.

Properties

Name Type Description
asAtstring

The date the figures are stated as at — the date the platform ran the report to, which is
not always the date asked for (Xero serves a mid-month date as at that month's end).

The date the figures are stated as at — the date the platform ran the report to, which is
not always the date asked for (Xero serves a mid-month date as at that month's end).

currencystring

ISO currency code the figures are in, where the platform reports one.

ISO currency code the figures are in, where the platform reports one.

sectionsarray of BooksReportSectionDto

The report's sections in the order the platform returned them, deliberately not normalised
into fixed totals. A section with a title and no lines is a heading the platform emitted.

The report's sections in the order the platform returned them, deliberately not normalised
into fixed totals. A section with a title and no lines is a heading the platform emitted.

JSON Example

{
  "asAt": "2024-01-01",
  "currency": "string",
  "sections": [
    {
      "title": "...",
      "lines": "..."
    }
  ]
}

Used By Operations