---
title: "Get Warehouse Information"
method: GET
path: "/warehouse"
tags: ["WarehouseApi"]
---

# Get Warehouse Information

`GET /warehouse`

Retrieves warehouse inventory items for the authenticated customer, optionally filtered by item code.

## Query parameters

- `itemCode` string

## Response `200`

OK

- ClientApiWarehouseItemsResultDto
  - `status` 'OK' | 'Error' | 'ValidationFailed' — 0 = OK, 1 = Error, 2 = ValidationFailed
  - `validations` ClientAPIValidation[], nullable
    - `code` integer
    - `message` string, nullable
    - `params` object, nullable
  - `data` CNWarehouseItem[], nullable — List of warehouse inventory items for the customer.
    - `itemCode` string, nullable — Unique code identifying this warehouse item (e.g., packaging material or label type).
    - `description` string, nullable — Human-readable description of the warehouse item.
    - `currentAmount` number, double, nullable — Current stock quantity of this item in the warehouse.
    - `type` 'ItemsPerBarcode' | 'SerialNumberTracking' — 0 = ItemsPerBarcode, 1 = SerialNumberTracking
  - `error` ClientAPIError
    - `code` integer
    - `message` string, nullable
    - `stackTrace` string, nullable
    - `innerException` ClientAPIError — recursive
    - `validations` ClientAPIValidation[], nullable
      - `code` integer
      - `message` string, nullable
      - `params` object, nullable
    - `messageParams` string[], nullable
    - `payload` JToken[]
  - `traceID` string, nullable — Unique trace identifier for debugging and support purposes.

---

[API](https://skmtc.dev/expressone/apis/client-api.md) · [All operations](https://skmtc.dev/expressone/apis/client-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/expressone/client-api/revisions/2acf7e4a5080/schema)
