WS203可用服务

本文档描述WS203的可用服务。

使用方法

对接流程
  1. 复制所需服务的代码内容。
  2. 对于需要使用的参数,填写值并去掉注释。
  3. 做为服务调用的接口参数 异步调用设备服务
示例
POST /device/openapi/v1/devices/1737019327786467329/services/call HTTP/1.1
Host: milesight.demo.com
Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6Inxxxxxxxxxxxxxx
Content-Type: application/x-www-form-urlencoded
User-Agent: OpenAPI

{
    "serviceId": "reboot",
    "inputs": {}
}

可用服务

可用服务类型

重启设备
{
    "serviceId": "reboot",
    "inputs": {}
}
查询设备状态
{
    "serviceId": "query_device_status",
    "inputs": {}
}
时钟同步
{
    "serviceId": "time_synchronize",
    "inputs": {}
}
清除历史数据
{
    "serviceId": "clear_historical_data",
    "inputs": {}
}
查询特定时间历史数据
{
    "serviceId": "retrival_historical_data_by_time",
    "inputs": {
        "time": null   // 具体时间戳 (格式: 时间戳)。
    }
}
查询特定时间段历史数据
{
    "serviceId": "retrival_historical_data_by_time_range",
    "inputs": {
        "start_time": null,   // 起始时间 (格式: 时间戳)。
        "end_time": null      // 结束时间 (格式: 时间戳)。
    }
}
停止历史数据查询
{
    "serviceId": "stop_historical_data_retrival",
    "inputs": {}
}