GET api/CustomerDropDownList?DB={DB}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| DB | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CustomerDropDown| Name | Description | Type | Additional 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>