accounting_upsertReportPin
WRITEUpsert report pin.
Parameters
reportKeystringrequiredpinnedbooleanrequiredCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "accounting_upsertReportPin",
"arguments": {
"reportKey": "string",
"pinned": true
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"reportKey": {
"type": "string"
},
"pinned": {
"type": "boolean"
}
},
"required": [
"reportKey",
"pinned"
]
}