获取事件历史记录
POST
/api/v1/things/device/msg/event-log/index请求参数
Body 参数application/json
deviceNames
array[string]
可选
设备名(不填获取产品下所有设备)
productID
string
可选
产品id 获取产品id下的所有设备信息
dataID
string
可选
获取的具体标识符的数据 如果不指定则获取所有属性数据,一个属性一条,如果没有获取到的不会返回值
timeStart
string
获取时间的开始
timeEnd
string
时间的结束
page
object (PageInfo)
可选
page
integer <int64>
页码
size
integer <int64>
每页大小
orders
array[object (OrderBy) {2}]
排序
types
array[string]
可选
类型 事件类型: 信息:info 告警alert 故障:fault
示例
{
"deviceNames": [
"string"
],
"productID": "string",
"dataID": "string",
"timeStart": "string",
"timeEnd": "string",
"page": {
"page": 0,
"size": 0,
"orders": [
{
"field": "string",
"sort": 0
}
]
},
"types": [
"string"
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
A successful response.
数据结构
code
integer
返回code
默认值:
200
msg
string
返回的消息
data
object (DeviceMsgEventLogIndexResp)
可选
list
array[object (DeviceMsgEventLogInfo) {4}]
数据
total
integer <int64>
总数
示例
未设置
最后修改时间: 4 天前