查询设备
HTTP方法
POST
HTTP URL
/v1/device/get
Header参数
- Content-Type采用 application/json
- 认证相关头字段,请参考wsse认证
Body数据
参数 | 类型 | 必需 | 描述 |
---|---|---|---|
deviceBelongs | string | 是 | 固定传1 |
pageNum | int | 是 | 页码 |
pageSize | int | 是 | 页大小 |
deviceId | string | 否 | 设备Id |
deviceName | string | 否 | 设备名称 |
identityNo | string | 否 | 老人身份证号 |
customerName | string | 否 | 老人姓名 |
online | string | 否 | 是否在线 0-不在线 1-在线 |
deviceType | string | 否 | 设备类型 |
bindState | string | 否 | 是否绑定老人 1-绑定老人 0-未绑定 |
请求示例
{
"deviceBelongs": "1",
"pageNum": 1,
"pageSize": 10,
"deviceId": "86469505571348",
"deviceName": "美安门磁",
"identityNo": "371481199708188848",
"customerName": "尹哲",
"online": "0",
"deviceType": "6",
"bindState": "1"
}
HTTP响应
参数 | 类型 | 描述 |
---|---|---|
code | int | 状态码,0为成功,非0为失败 |
message | string | 对于状态码的简单描述 |
data | pageInfo | 返回数据 |
pageInfo
参数 | 类型 | 描述 |
---|---|---|
pageNum | int | 页码 |
pageSize | int | 页大小 |
total | int | 结果数 |
list | List |
设备信息 |
OpenDeviceResponse
参数 | 类型 | 描述 |
---|---|---|
deviceId | String | 设备序列号 |
deviceName | string | 设备名称 |
identityNo | string | 用户身份证 |
cId | string | 用户cid |
customerName | string | 用户姓名 |
customerPhone | string | 用户电话 |
customerCommunity | string | 用户所属社区 |
customerAddress | string | 用户居住地址 |
online | string | 是否在线 0-否,1-是 |
deviceType | string | 设备类型 |
deviceManufacturer | string | 设备厂商 |
deviceBelongs | string | 设备归属 1-服务组织(家床、居家都是同一个意思);2-机构 |
bindState | string | 0-未绑定老人 1-已绑定老人 |
createTime | string | 创建时间 |
updateTime | string | 更新时间 |
正常响应
{
"code": 0,
"message": "Success",
"data": {
"pageNum": 1,
"pageSize": 10,
"pages": 0,
"total": 1,
"list": [
{
"deviceId": "86469505571348",
"deviceName": "美安门磁",
"identityNo": "371481199708188848",
"customerName": "尹哲",
"customerPhone": "17853313662",
"customerCommunity": "",
"customerAddress": "湖北省宜昌市西陵区西陵街道西陵社区",
"online": "0",
"deviceType": "6",
"deviceManufacturer": "15",
"deviceBelongs": "1",
"bindState": "1",
"createTime": "2023-03-30 13:40:52",
"updateTime": "2023-04-03 18:11:29",
"cId": "1535154437839122432"
}
]
},
"traceId": "1da45e68f95d45ba1648169001295011840x"
}
未查询到数据
{
"code": 0,
"message": "Success",
"data": {
"pageNum": 0,
"pageSize": 0,
"pages": 0,
"total": 0,
"list": []
},
"traceId": "1da45e68f95d45ba1650380996320681984x"
}