Get single item inventory by ship node (BETA)
To find out the current inventory for a seller’s item at one or more fulfillment centers, (i.e. ship nodes), use the Single item inventory by ship node API.
Option 1: Retrieve an item’s inventory at one ship node
To get an item’s inventory at only one fulfillment center, call the Single item inventory by ship node API.
You need to pass in the item SKU sku
as a path parameter and and Ship Node ID shipNode
as an optional query parameter in your initial request: /v3/inventories/{sku}?shipNode={shipNode}
For example, to get inventory for item SKU 19305 at the LAX fulfillment center (shipNode 458), make this call:
/v3/inventories/19305?shipNode=458
The response returns a collection, nodes, that provides individual information about each item quantity for each ship node. For an example response, see Response Samples in Single item inventory by ship node API Reference.
The API call returns the ship node ID and inventory quantity in unit and amount for inventory parameters : inputQty
, availToSellQty
and reservedQty
, where inputQty
represents total item inventory including items that are sold but not yet shipped.
The availToSellQty
represents the inventory available for purchase only. Any items that are sold but not yet shipped will not show up in this count.
The reservedQty
represents the count of items that are sold but not yet shipped.
Option 2: Retrieve an item’s inventory at all ship nodes
If you want to get all fulfillment center inventories for an item, just pass in the SKU only as a path parameter: /v3/inventories/{sku}
For example: /v3/inventories/19305
The response will return all inventories for that item at all ship nodes.
Updated about 2 months ago