Skip to content

报警处理

对上传的报警进行处理,支持批量更改处理状态

接口信息

请求地址: /info_report/v1/update_alarm_handle

请求类型: POST

Content-Type:application/json

请求参数

字段类型必选说明
alarmIDsarray(string)报警ID,多个
handleStatusinteger处理状态,0:处理中,1:处理完成,2:不做处理,3:以后处理
notestring处理备注

响应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"
	}
}