inventory_upsertPickingList

WRITE

Upsert picking list.

Parameters

locationIdstringrequired
idstringoptional
pickingListIdstringoptional
assigneestringoptional
dueDatestringoptional
notesstringoptional

Call it

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

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

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "pickingListId": {
      "type": "string"
    },
    "locationId": {
      "type": "string"
    },
    "assignee": {
      "type": "string"
    },
    "dueDate": {
      "type": "string"
    },
    "notes": {
      "type": "string"
    }
  },
  "required": [
    "locationId"
  ]
}