accounting_getPurchaseLinePivotLines
READGet purchase line pivot lines.
Parameters
startDatestringrequiredendDatestringrequiredrowField1stringoptionalrowValue1stringoptionalrowField2stringoptionalrowValue2stringoptionalcolumnFieldstringoptionalcolumnValuestringoptionalcolumnPeriodStartstringoptionalcolumnPeriodEndstringoptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "accounting_getPurchaseLinePivotLines",
"arguments": {
"startDate": "string",
"endDate": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"startDate": {
"type": "string"
},
"endDate": {
"type": "string"
},
"rowField1": {
"type": "string"
},
"rowValue1": {
"type": "string"
},
"rowField2": {
"type": "string"
},
"rowValue2": {
"type": "string"
},
"columnField": {
"type": "string"
},
"columnValue": {
"type": "string"
},
"columnPeriodStart": {
"type": "string"
},
"columnPeriodEnd": {
"type": "string"
}
},
"required": [
"startDate",
"endDate"
]
}