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.
balanceIncoming number The incoming number of units to be delivered to the warehouse.
estimatedShippingDate string Changes to the estimated shipping date. The estimated date the stock will be ready for shipment to the end customer.
estimatedDeliveryDate string Changes to the estimated delivery date. The date when the incoming units are estimated to arrive at the warehouse.

Example

{
  "stockKeepingUnitId" : 12345,
  "priceLookUpNumber" : "...",
  "warehouseId" : 12345,
  "warehouseNumber" : "...",
  "balance" : 12345,
  "balanceIncoming" : 12345,
  "estimatedShippingDate" : "2024-10-25",
  "estimatedDeliveryDate" : "2024-09-12"
}