POST api/ExceptionMessage/PLDeleteExceptionNew
批量删除报警消息
Request Information
Body Parameters
PLDeleteExceptionModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ExceptionId |
报警id |
string |
None. |
| UserId |
用户id |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ExceptionId": "sample string 1",
"UserId": 2
}
application/xml, text/xml
Sample:
<PLDeleteExceptionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NewGPS2012.AppApi.Models.ParModel"> <ExceptionId>sample string 1</ExceptionId> <UserId>2</UserId> </PLDeleteExceptionModel>
Response Information
Resource Description
State说明
0. 表示成功
| 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>