API Docs / Schemas / BooksTrialBalanceDto

BooksTrialBalanceDto

A trial balance over a client's own books — one signed balance per nominal account, as the
platform reported it.

Properties

Name Type Description
fromstring

First day of the reported period.

First day of the reported period.

tostring

Last day of the reported period.

Last day of the reported period.

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.

rowsarray of BooksTrialBalanceRowDto

The accounts, in the order the platform returned them.

The accounts, in the order the platform returned them.

JSON Example

{
  "from": "2024-01-01",
  "to": "2024-01-01",
  "currency": "string",
  "rows": [
    {
      "nominalCode": "...",
      "name": "...",
      "total": "..."
    }
  ]
}

Used By Operations