GET api/inventory?manufacturerNumber={manufacturerNumber}

Get inventory details for a specified manufacturer number.

Request Information

Parameters

NameDescriptionAdditional information
manufacturerNumber
The product's manufacturer number.

Define this parameter in the request URI.

Response Information

Inventory details for the specified manufacturer number.

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-18T20:55:55.066968-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-18T20:55:55.066968-04:00</DateModified>
  <Sellable>true</Sellable>
</Inventory>