accounting_getPurchaseLinePivot

READ

Get purchase line pivot.

Parameters

startDatestringrequired
endDatestringrequired
stateanyrequired
periodEndsstring[]optional

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "accounting_getPurchaseLinePivot",
  "arguments": {
    "startDate": "string",
    "endDate": "string",
    "state": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "startDate": {
      "type": "string"
    },
    "endDate": {
      "type": "string"
    },
    "periodEnds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "state": {}
  },
  "required": [
    "startDate",
    "endDate",
    "state"
  ]
}