siigo_get_trial_balance_by_third
Generate trial balance reports filtered by third parties in Siigo accounting software. Specify date ranges, account codes, and tax difference inclusion to analyze financial data by customer.
Instructions
Get trial balance by third party report
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_end | No | Ending account code | |
account_start | No | Starting account code | |
customer | No | Customer filter | |
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"
},
"customer": {
"description": "Customer filter",
"type": "object"
},
"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"
}