POST api/Command/DeleteEventRemind
删除事件提醒[特定设备专用接口OF]
Request Information
Body Parameters
DeleteEventRemindModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| UserId | integer |
None. |
|
| Model | integer |
None. |
|
| DeviceId | integer |
None. |
|
| EIndex | integer |
None. |
|
| Token |
登录后获取到的 Token |
string |
None. |
| Language |
语言选项 |
string |
None. |
| AppId |
APP应用标识 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"UserId": 2,
"Model": 3,
"DeviceId": 4,
"EIndex": 5,
"Token": "sample string 6",
"Language": "sample string 7",
"AppId": "sample string 8"
}
application/xml, text/xml
Sample:
<DeleteEventRemindModel 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>4</DeviceId> <EIndex>5</EIndex> <Id>1</Id> <Model>3</Model> <UserId>2</UserId> </DeleteEventRemindModel>
Response Information
Resource Description
CommandResult
| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | string |
None. |
|
| Message | string |
None. |
|
| WIFIItem | Collection of WIFIResult |
None. |
|
| State |
状态码 |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Content": "sample string 1",
"Message": "sample string 2",
"WIFIItem": [
{
"WIFIName": "sample string 1",
"SSID": "sample string 2",
"IsCurrentLink": true,
"Password": "sample string 4"
},
{
"WIFIName": "sample string 1",
"SSID": "sample string 2",
"IsCurrentLink": true,
"Password": "sample string 4"
}
],
"State": 3
}
application/xml, text/xml
Sample:
<CommandResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NewGPS2012.AppApi.Models.ResModel">
<State>3</State>
<Content>sample string 1</Content>
<Message>sample string 2</Message>
<WIFIItem>
<WIFIResult>
<IsCurrentLink>true</IsCurrentLink>
<Password>sample string 4</Password>
<SSID>sample string 2</SSID>
<WIFIName>sample string 1</WIFIName>
</WIFIResult>
<WIFIResult>
<IsCurrentLink>true</IsCurrentLink>
<Password>sample string 4</Password>
<SSID>sample string 2</SSID>
<WIFIName>sample string 1</WIFIName>
</WIFIResult>
</WIFIItem>
</CommandResult>