inventory_generatePickingList

WRITE

Generate picking list.

Parameters

jobOperationIdsstring[]required
locationIdstringrequired
assigneestringnulloptional
dueDatestringnulloptional

Call it

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

call_tool
call_tool({
  "name": "inventory_generatePickingList",
  "arguments": {
    "jobOperationIds": [],
    "locationId": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "jobOperationIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "locationId": {
      "type": "string"
    },
    "assignee": {
      "type": [
        "string",
        "null"
      ]
    },
    "dueDate": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "jobOperationIds",
    "locationId"
  ]
}