GetWarehouseItemQuantities - Change in Response Format
over 8 years ago by Shane Stivers
Soon, we will be changing how getWarehouseItemQuantities will return the data. It is currently returned in this format:
{
"ItemQuantities": {
"10000": 150,
"10012": 10,
"testSku1": 19,
"HD3984-375707": 1,
"RachelGreen": 155,
"EL-BAGMOUNT": 99,
"EL-SPEEDBAG": 98
}
}
We will be updating it to be more descriptive and more accurate to the following:
{
"ItemQuantities": [
{Sku:"111", Quantity:5},
{Sku:"222", Quantity:4},
{Sku:"333", Quantity:6}
]
}
This will be out by May 31, 2016. So, if you are using this call, you may need to adjust how you parse the data for future changes.
As always, if you have any questions/concerns, feel free to open up a discussion on our Developer Forums. Thank you and have a wonderful day!