GET api/CustomerDropDownList/{DB}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DB

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerDropDown
NameDescriptionTypeAdditional information
Customerid

integer

None.

CustomerName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Customerid": 1,
    "CustomerName": "sample string 2"
  },
  {
    "Customerid": 1,
    "CustomerName": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerDropDown xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdroitERPWebApis">
  <CustomerDropDown>
    <CustomerName>sample string 2</CustomerName>
    <Customerid>1</Customerid>
  </CustomerDropDown>
  <CustomerDropDown>
    <CustomerName>sample string 2</CustomerName>
    <Customerid>1</Customerid>
  </CustomerDropDown>
</ArrayOfCustomerDropDown>