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 |
|---|---|---|
| from | string | First day of the reported period. |
First day of the reported period. | ||
| to | string | Last day of the reported period. |
Last day of the reported period. | ||
| currency | string | ISO currency code the figures are in, where the platform reports one. |
ISO currency code the figures are in, where the platform reports one. | ||
| rows | array 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": "..."
}
]
}