GET api/User/GetDeviceTypeList?UserID={UserID}
获取用户设备种类列表
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID |
用户ID |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
JResultOfListOfDeviceType| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | integer |
None. |
|
| Error | string |
None. |
|
| Result | Collection of DeviceType |
None. |
|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": 1,
"Error": "sample string 2",
"Result": [
{
"Type_Name": "sample string 1",
"Type_Name_En": "sample string 2"
},
{
"Type_Name": "sample string 1",
"Type_Name_En": "sample string 2"
}
],
"Success": true
}