GET api/inventory/InventoryWarehouse?productID={productID}

Get the warehouse count for an existing inventory item and warehouse number.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
productID

string

Default value is

Body Parameters

None.

Response Information

Resource Description

Collection of InventoryWarehouseViewModel
NameDescriptionTypeAdditional information
InventoryWarehouseID

The ID for the Inventory/Warehouse combination.

integer

None.

ProductID

This is the Product ID or item number

string

None.

WarehouseID

The WarehouseID

integer

None.

Cost

Company cost for a specific inventory item.

decimal number

None.

OnHand

The number of a specific inventory item on hand.

integer

None.

OnHandShipped

The number of a specific inventory item currently in the warehouse and slated for shipping.

integer

None.

IdealOnHand

The ideal quantity of a specific item to keep on hand in the warehouse.

integer

None.

ReorderLevel

The point at which a specific inventory item should be ordered for the warehouse.

integer

None.

SoftCount

integer

None.

SoftCountParty

integer

None.

SoftCountNonParty

integer

None.

Response Formats

application/xml, text/xml

Sample:
<ListOfInventoryWarehouseViewModel>
  <InventoryWarehouseViewModel>
    <InventoryWarehouseID>1</InventoryWarehouseID>
    <ProductID>sample string 1</ProductID>
    <WarehouseID>2</WarehouseID>
    <Cost>3</Cost>
    <OnHand>4</OnHand>
    <OnHandShipped>5</OnHandShipped>
    <IdealOnHand>6</IdealOnHand>
    <ReorderLevel>1</ReorderLevel>
    <SoftCount>7</SoftCount>
    <SoftCountParty>8</SoftCountParty>
    <SoftCountNonParty>9</SoftCountNonParty>
  </InventoryWarehouseViewModel>
  <InventoryWarehouseViewModel>
    <InventoryWarehouseID>1</InventoryWarehouseID>
    <ProductID>sample string 1</ProductID>
    <WarehouseID>2</WarehouseID>
    <Cost>3</Cost>
    <OnHand>4</OnHand>
    <OnHandShipped>5</OnHandShipped>
    <IdealOnHand>6</IdealOnHand>
    <ReorderLevel>1</ReorderLevel>
    <SoftCount>7</SoftCount>
    <SoftCountParty>8</SoftCountParty>
    <SoftCountNonParty>9</SoftCountNonParty>
  </InventoryWarehouseViewModel>
</ListOfInventoryWarehouseViewModel>

application/json, text/json

Sample:
[
  {
    "InventoryWarehouseID": 1,
    "ProductID": "sample string 1",
    "WarehouseID": 2,
    "Cost": 3.0,
    "OnHand": 4,
    "OnHandShipped": 5,
    "IdealOnHand": 6,
    "ReorderLevel": 1,
    "SoftCount": 7,
    "SoftCountParty": 8,
    "SoftCountNonParty": 9
  },
  {
    "InventoryWarehouseID": 1,
    "ProductID": "sample string 1",
    "WarehouseID": 2,
    "Cost": 3.0,
    "OnHand": 4,
    "OnHandShipped": 5,
    "IdealOnHand": 6,
    "ReorderLevel": 1,
    "SoftCount": 7,
    "SoftCountParty": 8,
    "SoftCountNonParty": 9
  }
]