# Get inventory levels for a single item Endpoint: GET /inventoryLevels/{itemId} Security: BearerAuth ## Path parameters: - `itemId` (string, required) ## Query parameters: - `companyId` (string, required) ## Response 200 fields (application/json): - `itemId` (string) Example: "ITEM123" - `companyId` (string) Example: "SHOP5678" - `itemType` (string) Example: "tire" - `itemNumber` (string) Example: "GY12345" - `itemName` (string) Example: "Goodyear Eagle F1" - `itemTitle` (string) - `stockDetails` (array) Example: [{"locationId":"LOC001","qtyOnHand":20,"qtyAvailable":18,"qtyOnEstimates":2,"qtyInTransit":5,"qtyOrdered":10,"minimumQtyLevel":5,"maximumQtyLevel":20,"stockLocationName":"Warehouse 1 - Aisle 2 - Bin 3"}] - `stockDetails.locationId` (string) - `stockDetails.qtyOnHand` (number) - `stockDetails.qtyAvailable` (number) - `stockDetails.qtyOnEstimates` (number) - `stockDetails.qtyInTransit` (number) - `stockDetails.qtyOrdered` (number) - `stockDetails.minimumQtyLevel` (number) - `stockDetails.maximumQtyLevel` (number) - `stockDetails.stockLocationName` (string) ## Response 404 fields