StockBalanceResult Data Type

Holds a search result of stock balances.

Properties
name data type description
searchId string The identifier of the search. Used to get more pages.
page number The page retrieved.
totalHits number The total number of hits for the search.
pagesLeft number The number of pages that remain.
stockBalances array of StockBalance The stock balances in this page.

Example

{
  "searchId" : "...",
  "page" : 12345,
  "totalHits" : 12345,
  "pagesLeft" : 12345,
  "stockBalances" : [ {
    "stockKeepingUnitId" : 12345,
    "priceLookupNumber" : "...",
    "europeanArticleNumber" : "...",
    "warehouseId" : 12345,
    "balance" : 12345,
    "availableBalance" : 12345,
    "modifiedAt" : "2024-03-21T14:36:43.412+01:00",
    "warehouseNumber" : "..."
  }, {
    "stockKeepingUnitId" : 12345,
    "priceLookupNumber" : "...",
    "europeanArticleNumber" : "...",
    "warehouseId" : 12345,
    "balance" : 12345,
    "availableBalance" : 12345,
    "modifiedAt" : "...",
    "warehouseNumber" : "..."
  } ]
}