GET api/OrderTypes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of OrderType| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderTypeName | string |
None. |
|
| OrderTypeIconPath | string |
None. |
|
| OrderTypeCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"OrderTypeName": "sample string 1",
"OrderTypeIconPath": "sample string 2",
"OrderTypeCount": 3
},
{
"OrderTypeName": "sample string 1",
"OrderTypeIconPath": "sample string 2",
"OrderTypeCount": 3
}
]
application/xml, text/xml
Sample:
<ArrayOfOrderType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PrefTrackingWebAPI.Models">
<OrderType>
<OrderTypeCount>3</OrderTypeCount>
<OrderTypeIconPath>sample string 2</OrderTypeIconPath>
<OrderTypeName>sample string 1</OrderTypeName>
</OrderType>
<OrderType>
<OrderTypeCount>3</OrderTypeCount>
<OrderTypeIconPath>sample string 2</OrderTypeIconPath>
<OrderTypeName>sample string 1</OrderTypeName>
</OrderType>
</ArrayOfOrderType>