GET api/StockReorderList/{DB}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DB

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of StockReorderList
NameDescriptionTypeAdditional information
StockListID

integer

None.

Code

string

None.

StockLocationID

integer

None.

Stock_Location_Name

string

None.

AvailableQuantity

decimal number

None.

Re_Order_Level

decimal number

None.

Re_Order_Quantity

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "StockListID": 1,
    "Code": "sample string 2",
    "StockLocationID": 3,
    "Stock_Location_Name": "sample string 4",
    "AvailableQuantity": 5.0,
    "Re_Order_Level": 6.0,
    "Re_Order_Quantity": 7.0
  },
  {
    "StockListID": 1,
    "Code": "sample string 2",
    "StockLocationID": 3,
    "Stock_Location_Name": "sample string 4",
    "AvailableQuantity": 5.0,
    "Re_Order_Level": 6.0,
    "Re_Order_Quantity": 7.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfStockReorderList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdroitERPWebApis">
  <StockReorderList>
    <AvailableQuantity>5</AvailableQuantity>
    <Code>sample string 2</Code>
    <Re_Order_Level>6</Re_Order_Level>
    <Re_Order_Quantity>7</Re_Order_Quantity>
    <StockListID>1</StockListID>
    <StockLocationID>3</StockLocationID>
    <Stock_Location_Name>sample string 4</Stock_Location_Name>
  </StockReorderList>
  <StockReorderList>
    <AvailableQuantity>5</AvailableQuantity>
    <Code>sample string 2</Code>
    <Re_Order_Level>6</Re_Order_Level>
    <Re_Order_Quantity>7</Re_Order_Quantity>
    <StockListID>1</StockListID>
    <StockLocationID>3</StockLocationID>
    <Stock_Location_Name>sample string 4</Stock_Location_Name>
  </StockReorderList>
</ArrayOfStockReorderList>