Name
(* = required)
|
Data Type | Description |
locationid
*
|
int |
location id from which the summary is generated |
pgsiz
|
int |
max records to return per response; use "next" or "prev" link to paginate
|
pgnum
|
int |
considering pgsiz, returns the pgnum-th page, 1-indexed
|
ignorequalifiers
|
bool |
if true, groups summaries for location by item id only |
|
Type |
Description |
TotalResults |
int
|
|
Summaries |
IEnumerable<Inventory.Models.StockSummary>
|
|
ItemIdentifier |
Generic.Models.ItemIdentifier
|
|
Sku |
string
|
|
Id |
int
|
|
Qualifier |
string
|
|
TotalReceived |
decimal
|
|
Allocated |
decimal
|
including what has already been shipped
|
Available |
decimal
|
|
OnHold |
decimal
|
|
OnHand |
decimal
|
|
FacilityId |
int
|
|
Links |
IList<WebApi.Hal.Link>
|
|
|
-
next |
|
|
-
prev |
|
Sample accept: application/hal+json
{
"totalResults": 1,
"summaries": [
{
"itemIdentifier": {
"sku": "str",
"id": 2
},
"qualifier": "str",
"totalReceived": 2.0,
"allocated": 3.0,
"available": 4.0,
"onHold": 5.0,
"onHand": 6.0,
"facilityId": 7
}
]
}