inventory_insertWarehouseTransfer

WRITE

Create a warehouse transfer between locations. Generates sequence ID automatically..

Parameters

fromLocationIdstringrequired
toLocationIdstringrequired
transferIdstringoptional
statusanyoptional
transferDatestringoptional
expectedReceiptDatestringoptional
notesstringoptional
referencestringoptional
customFieldsanyoptional

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "inventory_insertWarehouseTransfer",
  "arguments": {
    "fromLocationId": "string",
    "toLocationId": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "fromLocationId": {
      "type": "string"
    },
    "toLocationId": {
      "type": "string"
    },
    "transferId": {
      "type": "string"
    },
    "status": {},
    "transferDate": {
      "type": "string"
    },
    "expectedReceiptDate": {
      "type": "string"
    },
    "notes": {
      "type": "string"
    },
    "reference": {
      "type": "string"
    },
    "customFields": {}
  },
  "required": [
    "fromLocationId",
    "toLocationId"
  ]
}