accounting_upsertExchangeRateOverride
WRITEUpsert exchange rate override.
Parameters
currencyCodestringrequiredratenumberrequiredCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "accounting_upsertExchangeRateOverride",
"arguments": {
"currencyCode": "string",
"rate": 0
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"currencyCode": {
"type": "string"
},
"rate": {
"type": "number"
}
},
"required": [
"currencyCode",
"rate"
]
}