组织管理
Requests
获取设备绑定信息
Topic: thing/product/{gateway_sn}/requests
Direction: up
Method: airport_bind_status
Data:
Column | Name | Type | constraint | Description |
---|---|---|---|---|
devices | 设备对象集合 | array | {} | |
»[array_item] | Elements in array | struct | {} | {"size": "2"} |
»»sn | 设备序列号 | text | {} |
Example:
{
"method": "airport_bind_status",
"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
"timestamp:": 1654070968655,
"data": {
"devices": [
{
"sn": "drone-sn"
},
{
"sn": "dock-sn"
}
]
}
}
Topic: thing/product/{gateway_sn}/requests_reply
Direction: down
Method: airport_bind_status
Data:
Column | Name | Type | constraint | Description |
---|---|---|---|---|
bind_status | 绑定信息 | array | {} | |
»[array_item] | Elements in array | struct | {} | {"size": "2"} |
»»sn | 设备序列号 | text | {} | |
»»is_device_bind_organization | 设备是否绑定到组织 | bool | {"0":"否","1":"是"} | |
»»organization_id | 组织id | text | {} | |
»»organization_name | 组织名称 | text | {} | |
»»device_callsign | 设备在组织中的名称 | text | {} |
Example:
{
"method": "airport_bind_status",
"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
"timestamp:": 1654070968655,
"data": {
"result": 0,
"output": {
"bind_status": [
{
"sn": "12345",
"is_device_bind_organization": true,
"organization_id": "12345678",
"organization_name": "12345",
"device_callsign": "设备组织callsign"
},
{
"sn": "12345",
"is_device_bind_organization": true,
"organization_id": "12345678",
"organization_name": "12345",
"device_callsign": "设备组织callsign"
}
]
}
}
}
查询设备绑定对应的组织信息
Topic: thing/product/{gateway_sn}/requests
Direction: up
Method: airport_organization_get
Data:
Column | Name | Type | constraint | Description |
---|---|---|---|---|
device_binding_code | 设备绑定码 | text | {} | |
organization_id | 组织id | text | {} |
Example:
{
"method": "airport_organization_get",
"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
"timestamp:": 1654070968655,
"data": {
"device_binding_code": "device_binding_code",
"organization_id": "organization_id"
}
}
Topic: thing/product/{gateway_sn}/requests_reply
Direction: down
Method: airport_organization_get
Data:
Column | Name | Type | constraint | Description |
---|---|---|---|---|
organization_name | 组织名称 | text | {} |
Example:
{
"method": "airport_organization_get",
"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
"timestamp:": 1654070968655,
"data": {
"result": 0,
"output": {
"organization_name": "organization_name"
}
}
}
设备绑定到组织
Topic: thing/product/{gateway_sn}/requests
Direction: up
Method: airport_organization_bind
Data:
Column | Name | Type | constraint | Description |
---|---|---|---|---|
bind_devices | 绑定参数列表 | array | {} | |
»[array_item] | Elements in array | struct | {} | {"size": "2"} |
»»device_binding_code | 设备绑定码 | text | {} | |
»»organization_id | 组织id | text | {} | |
»»device_callsign | 设备在组织的名称 | text | {} | |
»»sn | 设备序列号 | text | {} | |
»»device_model_key | 产品枚举值 | text | {} | 参考:产品支持 |
Example:
{
"method": "airport_organization_bind",
"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
"timestamp:": 1654070968655,
"data": {
"bind_devices": [
{
"device_binding_code": "device_binding_code",
"organization_id": "organization_id",
"device_callsign": "dock-device-callsign",
"sn": "dock-sn",
"device_model_key": "3-1-0"
},
{
"device_binding_code": "device_binding_code",
"organization_id": "organization_id",
"device_callsign": "drone-device-callsign",
"sn": "drone-sn",
"device_model_key": "0-67-0"
}
]
}
}
Topic: thing/product/{gateway_sn}/requests_reply
Direction: down
Method: airport_organization_bind
Data:
Column | Name | Type | constraint | Description |
---|---|---|---|---|
err_infos | 错误信息 | array | {} | |
»[array_item] | Elements in array | struct | {} | {"size": "2"} |
»»sn | 设备序列号 | text | {} | |
»»err_code | 错误码 | int | {} | 自定义,非 0 表示绑定不成功 |
Example:
{
"method": "airport_organization_bind",
"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
"timestamp:": 1654070968655,
"data": {
"result": 0,
"output": {
"err_infos": [
{
"sn": "dock-sn",
"err_code": 210231
},
{
"sn": "drone-sn",
"err_code": 210231
}
]
}
}
}