# 功能详情
根据设备号获取当前设备的最新数据。
# 请求地址和方法
- 请求地址
https://www.sdzhiot.top/api/v1/control/nodes
- 请求方法
GET
# 参数说明
- 请求头
Content-Type:application/json;charset=UTF-8
- 请求参数
字段名 | 字段类型 | 字段说明 | 是否必须 |
---|---|---|---|
token | String | accessToken | Y |
sno | String | 设备号 | Y |
# 样例输入
{
"system": {
"appKey": "4a092226ddde4b2b9a8ba63e085ecd85",
"sign": "b006136a59cecfe5a6d7dc26e5a8d8de",
"time": 1603352833
},
"params": {
"sno": "27D444143766",
"token": "zh.ade5042ee589d93d189a826f5fa81d30.8f38b2ccc0f58ac59e44f47c33604899"
}
}
# 返回data字段说明
字段名 | 字段类型 | 字段说明 |
---|---|---|
nodeId | String | 设备节点编号 |
name | String | 设备节点名称 |
unit | String | 数据单位 |
val | String | 设备节点值 |
sensorType | String | 设备节点值,0:数值型 2:开关型 3:点动型 |
display | Integer | 是否需要显示该节点,0:不显示 1:显示 |
updateTime | String | 节点数据更新时间 |
# 样例输出
{
"msg": "操作成功",
"code": 200,
"data": [
{
"nodeId": "27D44414376601",
"name": "自动",
"unit": null,
"val": "0",
"sensorType": 3,
"display": 1,
"updateTime": "2024-06-06 03:18:49"
},
{
"nodeId": "27D44414376602",
"name": "手动",
"unit": null,
"val": "0",
"sensorType": 3,
"display": 1,
"updateTime": "2024-06-06 03:18:49"
},
{
"nodeId": "27D44414376603",
"name": "阀门打开",
"unit": null,
"val": "0",
"sensorType": 3,
"display": 1,
"updateTime": "2024-06-06 03:18:49"
},
{
"nodeId": "27D44414376604",
"name": "阀门关闭",
"unit": null,
"val": "0",
"sensorType": 3,
"display": 1,
"updateTime": "2024-06-06 03:18:49"
},
{
"nodeId": "27D44414376605",
"name": "闸门停止",
"unit": null,
"val": "0",
"sensorType": 3,
"display": 1,
"updateTime": "2024-06-06 03:18:49"
},
{
"nodeId": "27D44414376606",
"name": "水深",
"unit": "cm",
"val": "0",
"sensorType": 0,
"display": 1,
"updateTime": "2024-06-06 03:18:49"
}
]
}
# 返回码
返回码 | 返回消息 | 说明 |
---|---|---|
200 | 操作成功 | 请求成功 |
500 | 服务器错误 | 服务端异常 |
10001 | 参数为空或格式不正确 | 参数错误 |
10002 | appKey不存在 | 确认appKey是否正确 |
10004 | 签名错误 | 参数签名错误 |