Appearance
GET 获取单个房间
GET /clip/v2/resource/room/room_uuid
说明
- 获取单个房间信息
返回示例
200 Response
json
{
"code": 0,
"msg": "string",
"data": {
"obj": {
"id": "string",
"type": "string",
"name": "string",
"room_kind": 0,
"room_type": "string",
"icon": "string",
"background": 0,
"sequence": 0,
"children": [
{
"rid": "string",
"rtype": "string"
}
],
"services": [
{
"rid": "string",
"rtype": "string"
}
]
}
}
}
返回结果
状态码 | 状态码含义 | 说明 | 数据模型 |
---|---|---|---|
200 | OK | none | Inline |
返回数据结构
状态码 200
名称 | 类型 | 必选 | 约束 | 中文名 | 说明 |
---|---|---|---|---|---|
» code | integer | true | none | 状态码 | none |
» msg | string | true | none | 消息 | none |
» data | object | true | none | none | |
»» obj | object | true | none | none | |
»»» id | string | true | none | 房间UUID | none |
»»» type | string | true | none | 类型 | 此处必然为 room |
»»» name | string | true | none | 名称 | 房间名字 |
»»» room_kind | integer | true | none | 房间种类 | 0普通, 1全屋, 2未分配 |
»»» room_type | string | true | none | 房间分类 | 任意字符串, 暂未定义, 可以是 "卧室", "厨房" 等 |
»»» icon | string | true | none | BweeApp专用 | |
»»» background | integer | true | none | BweeApp专用 | |
»»» sequence | integer | true | none | BweeApp专用 | |
»»» children | [ResInfo] | true | none | 包含的设备 | 目前children的 rtype 必然为 device |
»»»» rid | string | true | none | 资源UUID | none |
»»»» rtype | string | true | none | 资源类型 | none |
»»» services | [ResInfo] | true | none | 服务列表 | 一般一个房间会包含一个 group_light 的服务 |
»»»» rid | string | true | none | 资源UUID | none |
»»»» rtype | string | true | none | 资源类型 | none |