accounting_getAccountLedger

READ

Get account ledger.

Parameters

accountIdstringrequired
startDatestringnullrequired
endDatestringnullrequired
limitnumberrequired
offsetnumberrequired

Call it

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

call_tool
call_tool({
  "name": "accounting_getAccountLedger",
  "arguments": {
    "accountId": "string",
    "startDate": "string",
    "endDate": "string",
    "limit": 0,
    "offset": 0
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "accountId": {
      "type": "string"
    },
    "startDate": {
      "type": [
        "string",
        "null"
      ]
    },
    "endDate": {
      "type": [
        "string",
        "null"
      ]
    },
    "limit": {
      "type": "number"
    },
    "offset": {
      "type": "number"
    }
  },
  "required": [
    "accountId",
    "startDate",
    "endDate",
    "limit",
    "offset"
  ]
}