GET api/inventory?itemIdentifier={itemIdentifier}

Get inventory details for a specified item identifier. First checks the product's Sku then UPC then Manufacturer Number.

Request Information

Parameters

NameDescriptionAdditional information
itemIdentifier
The product's item identifier.

Define this parameter in the request URI.

Response Information

Inventory details for the specified item identifier.

Response body formats

application/json, text/json

Sample:
{
  "Sku": "sample string 1",
  "Name": "sample string 2",
  "Upc": "sample string 3",
  "ManufacturerNumber": "sample string 4",
  "AvailableQuantity": 5,
  "QuantityOnHand": 6,
  "DateModified": "2024-04-26T19:13:00.2418768-04:00",
  "Sellable": true
}

application/xml, text/xml

Sample:
<Inventory xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Sku>sample string 1</Sku>
  <Name>sample string 2</Name>
  <Upc>sample string 3</Upc>
  <ManufacturerNumber>sample string 4</ManufacturerNumber>
  <AvailableQuantity>5</AvailableQuantity>
  <QuantityOnHand>6</QuantityOnHand>
  <DateModified>2024-04-26T19:13:00.2418768-04:00</DateModified>
  <Sellable>true</Sellable>
</Inventory>