accounting_getDimensionPivotLines
READGet dimension pivot lines.
Parameters
reportanyrequiredstartDatestringrequiredendDatestringrequiredfiltersanyrequiredscrapAccountIdsstring[]optionalrowDimension1stringoptionalrowValue1stringoptionalrowValue1IsNullbooleanoptionalrowDimension2stringoptionalrowValue2stringoptionalrowValue2IsNullbooleanoptionalcolumnDimensionstringoptionalcolumnValuestringoptionalcolumnValueIsNullbooleanoptionalcolumnPeriodStartstringoptionalcolumnPeriodEndstringoptionalaccountIdsstring[]optionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "accounting_getDimensionPivotLines",
"arguments": {
"report": "string",
"startDate": "string",
"endDate": "string",
"filters": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"report": {},
"scrapAccountIds": {
"type": "array",
"items": {
"type": "string"
}
},
"startDate": {
"type": "string"
},
"endDate": {
"type": "string"
},
"filters": {},
"rowDimension1": {
"type": "string"
},
"rowValue1": {
"type": "string"
},
"rowValue1IsNull": {
"type": "boolean"
},
"rowDimension2": {
"type": "string"
},
"rowValue2": {
"type": "string"
},
"rowValue2IsNull": {
"type": "boolean"
},
"columnDimension": {
"type": "string"
},
"columnValue": {
"type": "string"
},
"columnValueIsNull": {
"type": "boolean"
},
"columnPeriodStart": {
"type": "string"
},
"columnPeriodEnd": {
"type": "string"
},
"accountIds": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"report",
"startDate",
"endDate",
"filters"
]
}