查询空间能耗趋势

更新时间:2023-06-21 07:13:08下载pdf

本文介绍查询空间能耗趋势的 API。

接口描述

查询一定时间范围内,空间层级能源趋势数据,包括水、电、气的使用、生成或转储统计数据。

接口地址

GET: /v1.0/iot-03/energy/{energy_type}/space/statistics-trend

请求参数

参数名 类型 参数位置 是否必填 说明
energy_type String uri true 能源类型,仅支持电: electricity
energy_action String query true 能源行为,仅支持消耗: consume
statistics_type String query true 统计粒度,
  • month:月,格式为 yyyyMM,最大跨度12个月,只能查询最近一年的数据
  • day:天,格式为 yyyyMMdd,最大跨度7天,只能查询最近 90 天的数据
  • hour:小时,格式为 yyyyMMddHH,最大跨度 24 小时,只能查询最近 7 天的数据
start_time String query true 开始时间
end_time String query true 结束时间
depth Integer query false 空间层级,默认层级为 0,即空间下第一层级,层级取值范围为 0~9
contain_childs Boolean query false 是否包含子节点数据,默认true

返回参数

参数名 类型 说明
result List

result 说明

参数名 类型 说明
time String 时间
value Float 能源数据

请求示例

GET: /v1.0/iot-03/energy/electricity/space/statistics-trend?energy_action=consume&statisticsType=hour&startTime=2021092315&endTime=2021092318&depth=0&containChilds=false

返回示例

{ "result": [ { "time": "2021092315", "value": 0 }, { "time": "2021092316", "value": 24.1 }, { "time": "2021092317", "value": 20.2 }, { "time": "2021092318", "value": 0 } ], "t": 1632465822576, "success": true }

错误码

参考 错误码