get_inventory_summary
Retrieve inventory summary for a product including quantities on hand, available, and reserved stock levels to monitor current inventory status.
Instructions
Get inventory summary for a product including quantities on hand, available, reserved, etc.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| productId | Yes | The product ID (UUID) |
Input Schema (JSON Schema)
{
"properties": {
"productId": {
"description": "The product ID (UUID)",
"type": "string"
}
},
"required": [
"productId"
],
"type": "object"
}