accounting_getJournalSyncCompleteness

READ

Get journal sync completeness.

Parameters

/** companyIntegration id, e.g. "xero" | "quickbooks" | "rillet". */ integrationIdstringrequired
journals dated before this are out of scope. */ syncFromDatestringrequired
/** Restrict to one accounting period (the close auto-check). */ accountingPeriodIdstringoptional

Call it

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

call_tool
call_tool({
  "name": "accounting_getJournalSyncCompleteness",
  "arguments": {
    "/** companyIntegration id, e.g. \"xero\" | \"quickbooks\" | \"rillet\". */\n    integrationId": "string",
    "journals dated before this are out of scope. */\n    syncFromDate": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "/** companyIntegration id, e.g. \"xero\" | \"quickbooks\" | \"rillet\". */\n    integrationId": {
      "type": "string"
    },
    "journals dated before this are out of scope. */\n    syncFromDate": {
      "type": "string"
    },
    "/** Restrict to one accounting period (the close auto-check). */\n    accountingPeriodId": {
      "type": "string"
    }
  },
  "required": [
    "/** companyIntegration id, e.g. \"xero\" | \"quickbooks\" | \"rillet\". */\n    integrationId",
    "journals dated before this are out of scope. */\n    syncFromDate"
  ]
}