GET api/inventoryV2?manufacturerNumber={manufacturerNumber}
No documentation available.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
manufacturerNumber | No documentation available. |
Define this parameter in the request URI. |
locationIds | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
[ 1, 2, 3 ]
application/xml, text/xml
Sample:
<ArrayOfInt xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <int>1</int> <int>2</int> <int>3</int> </ArrayOfInt>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
No documentation available.
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, "Discontinued": 4, "Sellable": true }, { "LocationId": 1, "AvailableQuantity": 2, "QuantityOnHand": 3, "Discontinued": 4, "Sellable": true }, { "LocationId": 1, "AvailableQuantity": 2, "QuantityOnHand": 3, "Discontinued": 4, "Sellable": true } ], "DateModified": "2025-03-14T06:21:52.1612606-04:00" }
application/xml, text/xml
Sample:
<InventoryV2 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> <LocationInventoryv2> <LocationId>1</LocationId> <AvailableQuantity>2</AvailableQuantity> <QuantityOnHand>3</QuantityOnHand> <Discontinued>4</Discontinued> <Sellable>true</Sellable> </LocationInventoryv2> <LocationInventoryv2> <LocationId>1</LocationId> <AvailableQuantity>2</AvailableQuantity> <QuantityOnHand>3</QuantityOnHand> <Discontinued>4</Discontinued> <Sellable>true</Sellable> </LocationInventoryv2> <LocationInventoryv2> <LocationId>1</LocationId> <AvailableQuantity>2</AvailableQuantity> <QuantityOnHand>3</QuantityOnHand> <Discontinued>4</Discontinued> <Sellable>true</Sellable> </LocationInventoryv2> </LocationInventories> <DateModified>2025-03-14T06:21:52.1612606-04:00</DateModified> </InventoryV2>