分页获取开放平台添加设备的通道基本信息
# deviceOpenList:分页获取开放平台添加设备的通道基本信息
# 功能详情
分页获取开放平台添加设备的通道基本信息。
注意:查询乐橙App绑定的设备需要通过deviceBaseList接口获取 。
# 请求地址
https://openapi.lechange.cn/openapi/deviceOpenList
# 传入参数说明
参数名 | 参数类型 | 是否必填 | 默认值 | 合法值 | 参数说明 |
---|---|---|---|---|---|
token | String | 是 | 管理员accessToken | ||
bindId | Long | 是 | 数字取值范围为:[1,N],1表示从第一页查询(兼容-1代表第一页) | 查询页码 | |
limit | Integer | 是 | 最大为128 | 条数 | |
type | String | 是 | bind:查询绑定的设备;share:查询分享的设备;bindAndShare:查询绑定和分享的设备 | 绑定类型 | |
needApInfo | Boolean | 是 | true:需要;false:不需要 | 是否需要配件列表信息 |
# 样例输入
{
"system":{
"ver":"1.0",
"appId":"lcdxxxxxxxxx",
"sign":"aaf47e07e06e12db918430b4f99c2564",
"time":1603370922,
"nonce":"d1c25a03-0f75-4105-b2f8-ace0b7c25968"
},
"id":"04b3bdac-5a45-414d-a97a-922542a1d218",
"params":{
"limit":"128",
"type":"bind",
"bindId":"-1",
"token":"At_00000ad9e6e87f0142eb92e207aec46a",
"needApInfo":"true"
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 返回data字段说明
字段名 | 字段类型 | 字段说明 | ||
---|---|---|---|---|
count | Integer | 本次查询到的设备数 | ||
deviceList | bindId | Long | 绑定分享表自增id | |
deviceId | String | 设备序列号 | ||
channels | channelId | String | 通道号 | |
channelName | String | 通道名称 | ||
aplist | apId | String | 配件id | |
apName | String | 配件名称 | ||
apType | String | 配件类型 |
# 样例输出
{
"result":{
"msg":"操作成功。",
"code":"0",
"data":{
"count":3,
"deviceList":[
{
"channels":[
{
"channelName":"TP1S-1842",
"channelId":"0"
}
],
"deviceId":"TESTQWERXXXX",
"bindId":16425764,
"aplist":[
]
},
{
"channels":[
{
"channelName":"TP1S-1375",
"channelId":"0"
}
],
"deviceId":"TESTQWERXXXX",
"bindId":15540451,
"aplist":[
]
},
{
"channels":[
{
"channelName":"IPC-6683",
"channelId":"0"
}
],
"deviceId":"TESTQWERXXXX",
"bindId":15394252,
"aplist":[
]
}
]
}
},
"id":"04b3bdac-5a45-414d-a97a-922542a1d218"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51