Last Updated on : 2023-06-21 07:13:06
According to the node under the asset or custom dimension, query the statistical data of environmental indicators over a period of time, including temperature, humidity, CO2, and formaldehyde.
GET: /v1.1/iot-03/environment-indicators/statistics
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
indicator_codes | String | query | true | The indicators. You can query up to 10 indicators each time. |
dimension_code | String | query | true | The dimension type. |
node_ids | String | query | true | The node under the specified dimension. You can query up to 20 nodes each time. |
statistics_type | String | query | false | The statistics type. Default value: hour .
|
statistics_function | String | query | false | The statistical function. Default value: AVG .
|
start_time | String | query | true | The start time. The format is linked with statistics_type .
|
end_time | String | query | true | The end time. The format is linked with statistics_type .
|
Parameter name | Type | Description |
---|---|---|
result | EnvironmentIndicatorRes | The returned result. |
Description of result
Parameter name | Type | Description |
---|---|---|
indicators | List |
The data of a specified indicator. |
Description of indicators
Parameter name | Type | Description |
---|---|---|
code | String | The code of a specified indicator. |
unit | String | The unit of the indicator values. |
data_items | List |
The time trend of the data. |
Description of data_items
Parameter name | Type | Description |
---|---|---|
value | String | The code of a specified indicator. |
time | String | The time. |
GET: GET /v1.1/iot-03/environment-indicators/statistics?indicators=air_quality_value,voc_value,pm25_value
{
"result": {
"indicators": [
{
"code": "humidity_value",
"unit": "%",
"data_items": [
{
"time": "2021090116",
"value": "5.30"
}
]
},
{
"code": "temperature_value",
"unit": "℃",
"data_items": [
{
"time": "2021090116",
"value": "26.60"
}
]
}
]
},
"t": 1630586260147,
"success": true
}
For more information, see error code.
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback