Holds a search result of stock balances.
| name | data type | description |
|---|---|---|
| searchId | string | The identifier of the search. Used to get more pages. |
| page | number | The page retrieved. |
| pagesLeft | number | The number of pages that remain. |
| totalHits | number | The total number of hits for the search. |
| stockBalances | array of StockBalance | The stock balances in this page. |
Example
{
"searchId" : "...",
"page" : 12345,
"pagesLeft" : 12345,
"totalHits" : 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" : "..."
} ]
}