GET api/StockLocationList/{DB}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DB

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of StockLocationList
NameDescriptionTypeAdditional information
Stock_LocationID

integer

None.

Stock_Location_Name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Stock_LocationID": 1,
    "Stock_Location_Name": "sample string 2"
  },
  {
    "Stock_LocationID": 1,
    "Stock_Location_Name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfStockLocationList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdroitERPWebApis">
  <StockLocationList>
    <Stock_LocationID>1</Stock_LocationID>
    <Stock_Location_Name>sample string 2</Stock_Location_Name>
  </StockLocationList>
  <StockLocationList>
    <Stock_LocationID>1</Stock_LocationID>
    <Stock_Location_Name>sample string 2</Stock_Location_Name>
  </StockLocationList>
</ArrayOfStockLocationList>