invoicing_upsertInvoiceSettlement
WRITEUpsert invoice settlement.
Parameters
appanyrequired_operationenumrequiredRequired. 'create' inserts a new record, 'update' modifies the existing record with this id.
Call it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "invoicing_upsertInvoiceSettlement",
"arguments": {
"app": "string",
"_operation": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"app": {},
"_operation": {
"type": "string",
"enum": [
"create",
"update"
],
"description": "Required. 'create' inserts a new record, 'update' modifies the existing record with this id."
}
},
"required": [
"app",
"_operation"
]
}