inventory_insertManualInventoryAdjustment
WRITEInsert manual inventory adjustment.
Parameters
// `requiresSerialTracking` is a form-only flag for the validator's serial
// quantity guard — the route strips it before calling this.
inventoryAdjustmentanyrequiredCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "inventory_insertManualInventoryAdjustment",
"arguments": {
"// `requiresSerialTracking` is a form-only flag for the validator's serial\n // quantity guard — the route strips it before calling this.\n inventoryAdjustment": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"// `requiresSerialTracking` is a form-only flag for the validator's serial\n // quantity guard — the route strips it before calling this.\n inventoryAdjustment": {}
},
"required": [
"// `requiresSerialTracking` is a form-only flag for the validator's serial\n // quantity guard — the route strips it before calling this.\n inventoryAdjustment"
]
}