inventory_generateInventoryCountLines

WRITE

Generate inventory count lines.

Parameters

inventoryCountIdstringrequired
locationIdstringrequired
storageUnitIdsstring[]optional
itemTypestringoptional

Call it

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

call_tool
call_tool({
  "name": "inventory_generateInventoryCountLines",
  "arguments": {
    "inventoryCountId": "string",
    "locationId": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "inventoryCountId": {
      "type": "string"
    },
    "locationId": {
      "type": "string"
    },
    "storageUnitIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "itemType": {
      "type": "string"
    }
  },
  "required": [
    "inventoryCountId",
    "locationId"
  ]
}