POST Api/EBI/GetOrderDevice?orderID={orderID}&userID={userID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderID | integer |
Required |
|
| userID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GetOrderDevice_Result| Name | Description | Type | Additional information |
|---|---|---|---|
| DeviceID | integer |
None. |
|
| ProductID | integer |
None. |
|
| DeviceName | string |
None. |
|
| Description | string |
None. |
|
| DefaultPrice | decimal number |
None. |
|
| CategoryID | integer |
None. |
|
| CategoryName | string |
None. |
|
| AllowedFlag | boolean |
None. |
|
| IsOrderSubmitted | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"DeviceID": 1,
"ProductID": 1,
"DeviceName": "sample string 2",
"Description": "sample string 3",
"DefaultPrice": 4.0,
"CategoryID": 1,
"CategoryName": "sample string 5",
"AllowedFlag": true,
"IsOrderSubmitted": true
},
{
"DeviceID": 1,
"ProductID": 1,
"DeviceName": "sample string 2",
"Description": "sample string 3",
"DefaultPrice": 4.0,
"CategoryID": 1,
"CategoryName": "sample string 5",
"AllowedFlag": true,
"IsOrderSubmitted": true
}
]