accounting_getConsolidatedPeriodSeries

READ

Get consolidated period series.

Parameters

companyIdsstring[]required
targetCurrencystringrequired
argsobjectrequired

Call it

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

call_tool
call_tool({
  "name": "accounting_getConsolidatedPeriodSeries",
  "arguments": {
    "companyIds": [],
    "targetCurrency": "string",
    "args": {}
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "companyIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "targetCurrency": {
      "type": "string"
    },
    "args": {
      "type": "object",
      "properties": {
        "buckets": {
          "type": "array",
          "items": {}
        }
      },
      "required": [
        "buckets"
      ]
    }
  },
  "required": [
    "companyIds",
    "targetCurrency",
    "args"
  ]
}