accounting_getDimensionPivot

READ

Get dimension pivot.

Parameters

reportanyrequired
startDatestringrequired
endDatestringrequired
stateanyrequired
scrapAccountIdsstring[]optional
periodEndsstring[]optional

Call it

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

call_tool
call_tool({
  "name": "accounting_getDimensionPivot",
  "arguments": {
    "report": "string",
    "startDate": "string",
    "endDate": "string",
    "state": "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"
    },
    "periodEnds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "state": {}
  },
  "required": [
    "report",
    "startDate",
    "endDate",
    "state"
  ]
}