Storage Location

Summary

A storage location is a physical location where stock can be located. Since there might be more than one product located on the same location, more than one stock can be connected to a single storage location.

Depending on the facility type, a storage location can represent different concepts, e.g., the showcase area or the supply room in stores, or a compartment on the shelf or a pallet space in warehouses.

Description

Storage locations represent the available storage space in a facility. A given stock can either be generically assigned to a facility, or it can be assigned to a specific storage location by linking the stock to the storage location.

  • Storage locations can be grouped in zones.

  • Storage locations can be assigned traits, which they in turn inherit to all stocks linked to them.

Running Sequence

  • Storage locations can be ordered in a (running) sequence by defining the previous and next location via API.

  • Depending on the sequence type that was defined, the sequence is considered in picking or restowing.

  "runningSequences": [
    {
      "type": "PICKING_SEQUENCE",
      "previousStorageLocationRef": "string",
      "nextStorageLocationRef": "string"
    }
  ],

The running sequence defined for a storage location is prioritized over the running sequence that can be set on listing or order line item level.

Storage Location Types

Storage locations can either have the type "single storage" or the type "bulk storage".

  • On locations with type "single storage", several items of the same product can be stored, e.g., 100 apples. If a product is already placed on a single-storage location, stowing of a different product on the same location is forbidden.

  • On locations with type "bulk storage", different products can be stored, e.g., 100 apples and 100 bananas.

Custom Attributes

The customAttributes field is a JSON object that carries information that might be relevant to the Storage Location. The form and content of this object is completely free, but its JSON serialized size is limited. Check out the Custom Attributes section for more details.

Last updated