Contains information about stock balance for a specific stock keeping unit in a specific warehouse, optionally at a specific stock location.
| name | data type | description |
|---|---|---|
| stockKeepingUnitId | number | The internal identifier of the stock keeping unit. |
| |
|
The price lookup unit number (PLUNO) of the stock keeping unit. Deprecated: Deprecated due to incorrect field name. Use priceLookUpNumber instead |
| |
|
The price lookup unit number (PLUNO) of the stock keeping unit. Deprecated: Deprecated due to incorrect field name. Use priceLookUpNumber instead |
| priceLookUpNumber | string | The price lookup number (PLUNO) of the stock keeping unit. |
| europeanArticleNumber | string | The European article number (EAN13) of the stock keeping unit. |
| warehouseId | number | The internal identifier of the warehouse that balance belongs to. Mutually exclusive with WarehouseNumber. |
| balance | number | Number of items stored in the warehouse. |
| availableBalance | number | Number of items stored in the warehouse, taking reservations into account. |
| balanceIncoming | number | Number of incoming items to the warehouse. |
| modifiedAt | string | Last changed date for the balance |
| warehouseNumber | string | The external identifier of the warehouse that balance belongs to. Mutually exclusive with warehouseId. |
| estimatedDeliveryDate | string | The estimated date for incoming stock to arrive at the warehouse. |
| estimatedShippingDate | string | The estimated date the stock will be ready for shipment to the end customer. |
Example
{
"stockKeepingUnitId" : 619,
"priceLookUpNumber" : "14114192",
"europeanArticleNumber" : "14114192",
"warehouseId" : 1,
"balance" : 12,
"availableBalance" : 9,
"balanceIncoming" : 5,
"modifiedAt" : "2024-03-21T14:36:43.412+01:00",
"warehouseNumber" : "W01",
"estimatedDeliveryDate" : "2024-02-15",
"estimatedShippingDate" : "2024-10-25"
}