GET api/TrademarkDropDownLists
Get All the Trademark Drop-down Lists in the system
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of TrademarkDD| Name | Description | Type | Additional information |
|---|---|---|---|
| TradeNameId |
Trade Name Id (Primary Key) |
integer |
None. |
| TradeName |
Trade Name |
string |
String length: inclusive between 0 and 64 |
Response Formats
application/json, text/json
Sample:
[
{
"tradeNameId": 1,
"tradeName": "sample string 2"
},
{
"tradeNameId": 1,
"tradeName": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfTrademarkDD xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/srd81.Models">
<TrademarkDD>
<TradeName>sample string 2</TradeName>
<TradeNameId>1</TradeNameId>
</TrademarkDD>
<TrademarkDD>
<TradeName>sample string 2</TradeName>
<TradeNameId>1</TradeNameId>
</TrademarkDD>
</ArrayOfTrademarkDD>