报警处理
对上传的报警进行处理,支持批量更改处理状态
请求参数
字段 | 类型 | 必选 | 说明 |
---|---|---|---|
alarmIDs | array(string) | 是 | 报警ID,多个 |
handleStatus | integer | 否 | 处理状态,0:处理中,1:处理完成,2:不做处理,3:以后处理 |
note | string | 否 | 处理备注 |
响应Data (object)
无
示例
请求示例
json
http://localhost:8080/info_report/v1/update_alarm_handle
{
"alarmIDs":["12554512154521","5456354215456545"],
"handleStatus":1,
"note":""
}
http://localhost:8080/info_report/v1/update_alarm_handle
{
"alarmIDs":["12554512154521","5456354215456545"],
"handleStatus":1,
"note":""
}
响应示例
json
{
"hdr": {
"code": 200,
"message": "success"
}
}
{
"hdr": {
"code": 200,
"message": "success"
}
}