查询会议室详情
Reference
- 参考接口 查询会议室详情
Success Response Sample
{
    "code": 0,
    "msg": "success",
    "data": {
        "error_room_ids": [],
        "rooms": [
            {
                "building_id": "omb_ba9da79110bf66329bd14ed1ca1e5c72",
                "building_name": "大型饲养基地",
                "capacity": 10,
                "description": "",
                "display_id": "FM523587912",
                "floor_name": "F1",
                "is_disabled": false,
                "name": "测试会议室",
                "room_id": "omm_feaf14d1b7bf379bebb496213e809928"
            }
        ]
    }
}
Request Params
| Key | Datatype | Required | Description | 
|---|---|---|---|
| room_ids | string | 用于查询指定会议室的 ID | |
| fields | string | 用于指定返回的字段名,每个字段名之间用逗号 "," 分隔,如:“id,name”,"*" 表示返回全部字段,可选字段有:"id,name,description,capacity,building_id,building_name,floor_name,is_disabled,display_id",默认返回所有字段 | 
HEADERS
| Key | Datatype | Required | Description | 
|---|---|---|---|
| Authorization | string | tenant_access_token | |
| 值格式:"Bearer access_token" | 
示例值:"Bearer t-7f1bcd13fc57d46bac21793a18e560" |
| Content-Type | string |  | 固定值:"application/json; charset=utf-8" |
RESPONSES
status: OK
{"code":0,"msg":"success","data":{"error_room_ids":[],"rooms":[{"building_id":"omb_e0ab4c89f8d2903816abb5bc3986303b","building_name":"关瑞大厦","capacity":100,"description":"","display_id":"FM761024918","floor_name":"F3","is_disabled":false,"name":"hwl测试会议室4","room_id":"omm_83b4756bdef4f55613659239934dfa79"}]}}