siigo_get_trial_balance
Generate trial balance reports from Siigo accounting software by specifying date ranges, account codes, and tax difference inclusion for financial analysis.
Instructions
Get trial balance report
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_end | No | Ending account code | |
account_start | No | Starting account code | |
includes_tax_difference | Yes | Include tax differences | |
month_end | Yes | Ending month (1-13) | |
month_start | Yes | Starting month (1-13) | |
year | Yes | Year |
Input Schema (JSON Schema)
{
"properties": {
"account_end": {
"description": "Ending account code",
"type": "string"
},
"account_start": {
"description": "Starting account code",
"type": "string"
},
"includes_tax_difference": {
"description": "Include tax differences",
"type": "boolean"
},
"month_end": {
"description": "Ending month (1-13)",
"type": "number"
},
"month_start": {
"description": "Starting month (1-13)",
"type": "number"
},
"year": {
"description": "Year",
"type": "number"
}
},
"required": [
"year",
"month_start",
"month_end",
"includes_tax_difference"
],
"type": "object"
}