inventory_updateStockTransferStatus
WRITEUpdate stock transfer status.
Parameters
idstringrequiredstatusanyrequiredcompletedAtstringnullrequiredassigneestringnulloptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "inventory_updateStockTransferStatus",
"arguments": {
"id": "string",
"status": "string",
"completedAt": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"status": {},
"assignee": {
"type": [
"string",
"null"
]
},
"completedAt": {
"type": [
"string",
"null"
]
}
},
"required": [
"id",
"status",
"completedAt"
]
}