Hello. For the last 4 days I have observed that sell rest api getInventoryItems returns the wrong inventory quantity, but if I use getInventoryItem and search by sku (https://api.ebay.com/sell/inventory/v1/inventory_item/{sku}) this method returns the correct quantity. What can I do to change it?
Examples:
getInvetoryItems.
"availability": {
"shipToLocationAvailability": {
"quantity": 0
}
}
and the same sku response body
getInventoryItem by sku:
"availability": {
"shipToLocationAvailability": {
"quantity": 7,
"allocationByFormat": {
"auction": 0,
"fixedPrice": 7
}
}
}