v1

latestOpenAPI 3.0.02026-07-2455104.8 MB
Storage Item

List storage items V2

Returns all storage location items for the specified warehouse / location.

get/api/v2/warehouses/{warehouseId}/storageLocations/{storageLocationId}/items

Path parameters

warehouseIdstring required

Resource identifier.

Example:17

ID of warehouse

storageLocationIdstring required

Resource identifier.

Example:17

ID of storage location

Response

Operation completed successfully. Support for products where a product is both serial number tracked AND batch/best before date tracked at the same time is limited. In case serial number tracking is set to "Generate own" in the product master data, the qualityControlAttribute quantities will be reported (a) for the serial numbers on shelf and (b) for the batch/bestBeforeDate records on shelf, thus potentially resulting in a double count in the total across all qualityControlAttribute->quantity values. The quantity on the product->quantity level reflects the correct quantity on shelf in any case.

Example response

{
  "data": [
    {
      "productId": "1",
      "sku": "ABC-12345-S-BL",
      "quantity": 5,
      "qualityControlAttributes": [
        {
          "quantity": 5,
          "batch": "Batch1",
          "bestBeforeDate": "2025-01-01",
          "serialNumbers": [
            {
              "number": "001"
            }
          ]
        }
      ]
    }
  ],
  "extra": {
    "totalCount": 1,
    "page": {
      "number": 1,
      "size": 10
    }
  }
}