accounting_getPurchaseLinePivotLines

READ

Get purchase line pivot lines.

Parameters

startDatestringrequired
endDatestringrequired
rowField1stringoptional
rowValue1stringoptional
rowField2stringoptional
rowValue2stringoptional
columnFieldstringoptional
columnValuestringoptional
columnPeriodStartstringoptional
columnPeriodEndstringoptional

Call 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"
  ]
}