accounting_getDimensionPivotLines

READ

Get dimension pivot lines.

Parameters

reportanyrequired
startDatestringrequired
endDatestringrequired
filtersanyrequired
scrapAccountIdsstring[]optional
rowDimension1stringoptional
rowValue1stringoptional
rowValue1IsNullbooleanoptional
rowDimension2stringoptional
rowValue2stringoptional
rowValue2IsNullbooleanoptional
columnDimensionstringoptional
columnValuestringoptional
columnValueIsNullbooleanoptional
columnPeriodStartstringoptional
columnPeriodEndstringoptional
accountIdsstring[]optional

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