组织管理

2023-07-18
暂无评分

Requests

获取设备绑定信息

Topic: thing/product/{gateway_sn}/requests

Direction: up

Method: airport_bind_status

Data:

ColumnNameTypeconstraintDescription
devices设备对象集合array{}
»[array_item]Elements in arraystruct{}{"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:

ColumnNameTypeconstraintDescription
bind_status绑定信息array{}
»[array_item]Elements in arraystruct{}{"size": "2"}
»»sn设备序列号text{}
»»is_device_bind_organization设备是否绑定到组织bool{"0":"否","1":"是"}
»»organization_id组织idtext{}
»»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:

ColumnNameTypeconstraintDescription
device_binding_code设备绑定码text{}
organization_id组织idtext{}

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:

ColumnNameTypeconstraintDescription
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:

ColumnNameTypeconstraintDescription
bind_devices绑定参数列表array{}
»[array_item]Elements in arraystruct{}{"size": "2"}
»»device_binding_code设备绑定码text{}
»»organization_id组织idtext{}
»»device_callsign设备在组织的名称text{}
»»sn设备序列号text{}
»»device_model_key产品枚举值text{}参考:产品支持open in new window

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:

ColumnNameTypeconstraintDescription
err_infos错误信息array{}
»[array_item]Elements in arraystruct{}{"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
				}
			]
		}
	}
}
若您对文档有意见或疑惑,点击可快速反馈,我们会与您联系。