inventory_getStorageUnitSubtrees

READ

Get storage unit subtrees.

Parameters

locationIdstringrequired
rootIdsstring[]required
maxDepthnumberrequired

Call it

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

call_tool
call_tool({
  "name": "inventory_getStorageUnitSubtrees",
  "arguments": {
    "locationId": "string",
    "rootIds": [],
    "maxDepth": 0
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "locationId": {
      "type": "string"
    },
    "rootIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "maxDepth": {
      "type": "number"
    }
  },
  "required": [
    "locationId",
    "rootIds",
    "maxDepth"
  ]
}