inventory_reconcileReceiptSerialEntities

WRITE

Reconcile receipt serial entities.

Parameters

receiptIdstringrequired
lines: { id: string; receivedQuantity: number | null; requiresSerialTrackingany[]optional

Call it

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

call_tool
call_tool({
  "name": "inventory_reconcileReceiptSerialEntities",
  "arguments": {
    "receiptId": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "receiptId": {
      "type": "string"
    },
    "lines: {\n      id: string;\n      receivedQuantity: number | null;\n      requiresSerialTracking": {
      "type": "array",
      "items": {}
    }
  },
  "required": [
    "receiptId"
  ]
}