StockBalanceUpdate Data Type

Contains information about stock balance update or creation for a specific stock keeping unit in a specific warehouse.

Properties
name data type description
stockKeepingUnitId number

The internal identifier of the stock keeping unit to update stock balance for.

Note: This field is mutually exclusive with europeanArticleNumber and priceLookupUnitNumber.

europeanArticleNumber string

The European article number (EAN13) of the stock keeping unit to update stock balance for.

Note: This field is mutually exclusive with stockKeepingUnitId and priceLookupUnitNumber.

Deprecated: European article numbers in Viskan are no longer unique and is therefore not a reliable way of identifying stock keeping units with.

priceLookupUnitNumber string The price lookup unit number (PLUNO) of this stock keeping unit.

Deprecated: Deprecated due to incorrect field name. Use priceLookupNumber instead

priceLookUpNumber string The Price Look-Up number (PLUNO) of the stock keeping unit.
warehouseId number The identifier of the warehouse to update stock balance in. Mutually exclusive with warehouseNumber.
warehouseNumber string The unique number of the warehouse to update stock balance in. Mutually exclusive with warehouseId.
balance number The physical number of units stored in the warehouse.

Example

{
  "stockKeepingUnitId" : 12345,
  "priceLookUpNumber" : "...",
  "warehouseId" : 12345,
  "warehouseNumber" : "...",
  "balance" : 12345
}