POST api/Device/ChangeDevice
修改设备,真匠。
Request Information
Body Parameters
ChangeDeviceModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId |
目标用户 |
integer |
None. |
| DeviceId | integer |
None. |
|
| OldSerialNumber |
原来imei |
string |
None. |
| NewSerialNumber |
新IMEI |
string |
None. |
| PhoneNum | string |
None. |
|
| Token |
登录后获取到的 Token |
string |
None. |
| Language |
语言选项 |
string |
None. |
| AppId |
APP应用标识 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"DeviceId": 2,
"OldSerialNumber": "sample string 3",
"NewSerialNumber": "sample string 4",
"PhoneNum": "sample string 5",
"Token": "sample string 6",
"Language": "sample string 7",
"AppId": "sample string 8"
}
application/xml, text/xml
Sample:
<ChangeDeviceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NewGPS2012.AppApi.Models.ParModel"> <AppId>sample string 8</AppId> <Language>sample string 7</Language> <Token>sample string 6</Token> <DeviceId>2</DeviceId> <NewSerialNumber>sample string 4</NewSerialNumber> <OldSerialNumber>sample string 3</OldSerialNumber> <PhoneNum>sample string 5</PhoneNum> <UserId>1</UserId> </ChangeDeviceModel>
Response Information
Resource Description
NormalResult
| Name | Description | Type | Additional information |
|---|---|---|---|
| Message |
消息 [大多数情况下可通过该消息做为提示语] |
string |
None. |
| State |
状态码 |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": "sample string 1",
"State": 2
}
application/xml, text/xml
Sample:
<NormalResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NewGPS2012.AppApi.Models.ResModel"> <State>2</State> <Message>sample string 1</Message> </NormalResult>