GetWarehouseItemQuantities - Change in Response Format (Coming Soon)

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 June 8, 2016. So, if you are using this call, you may need to adjust how you parse the data for future changes.

In addition, you will now be able to specify a Page size using the "PageSize" parameter. For more information, check out our documentation page after this update has been released.

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!