GET Order/GetOrderTypesByApiKey?apiKey={apiKey}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| apiKey | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of OrderTypeViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderTypeID | integer |
None. |
|
| OrderTypeDescription | string |
None. |
|
| OrderTypeLongDescription | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"OrderTypeID": 1,
"OrderTypeDescription": "sample string 2",
"OrderTypeLongDescription": "sample string 3"
},
{
"OrderTypeID": 1,
"OrderTypeDescription": "sample string 2",
"OrderTypeLongDescription": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfOrderTypeViewModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OrderTypeViewModel>
<OrderTypeID>1</OrderTypeID>
<OrderTypeDescription>sample string 2</OrderTypeDescription>
<OrderTypeLongDescription>sample string 3</OrderTypeLongDescription>
</OrderTypeViewModel>
<OrderTypeViewModel>
<OrderTypeID>1</OrderTypeID>
<OrderTypeDescription>sample string 2</OrderTypeDescription>
<OrderTypeLongDescription>sample string 3</OrderTypeLongDescription>
</OrderTypeViewModel>
</ArrayOfOrderTypeViewModel>