GET api/inventory?manufacturerNumber={manufacturerNumber}
Get inventory details for a specified manufacturer number.
Request Information
Parameters
Name | Description | Additional 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", "LocationInventories": [ { "LocationId": 1, "AvailableQuantity": 2, "QuantityOnHand": 3 }, { "LocationId": 1, "AvailableQuantity": 2, "QuantityOnHand": 3 }, { "LocationId": 1, "AvailableQuantity": 2, "QuantityOnHand": 3 } ], "DateModified": "2024-11-21T05:08:09.6651658-05: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> <LocationInventories> <LocationInventory> <LocationId>1</LocationId> <AvailableQuantity>2</AvailableQuantity> <QuantityOnHand>3</QuantityOnHand> </LocationInventory> <LocationInventory> <LocationId>1</LocationId> <AvailableQuantity>2</AvailableQuantity> <QuantityOnHand>3</QuantityOnHand> </LocationInventory> <LocationInventory> <LocationId>1</LocationId> <AvailableQuantity>2</AvailableQuantity> <QuantityOnHand>3</QuantityOnHand> </LocationInventory> </LocationInventories> <DateModified>2024-11-21T05:08:09.6651658-05:00</DateModified> <Sellable>true</Sellable> </Inventory>