查询临时会议室
查询通过 API 接口 instant_conference/create
调用的临时会议室。支持查询单个、多个或所有会议室。
请求地址
{base_url}/{api_path}/instant_conference/query?token={token}
请求参数
参数 | 是否必选 | 类型 | 描述 |
---|---|---|---|
number | 是 | String | 临时会议室号码。 取值范围:
|
响应参数
参数 | 类型 | 描述 |
---|---|---|
status | String | 请求结果。
|
conferences | Array <ConferenceInfo> | 会议室信息列表。 |
- ConferenceInfo
-
参数 类型 描述 number String 会议室号码。 name String 会议室名称。 moderators Integer 会议室主持人。 member String 与会成员信息。
示例
请求示例
查询临时会议室6466的信息。
POST /api/v2.0.0/instant_conference/query?token=3ddc40cf73c8ed477e4e466b044e9c89 Content-Type:application/json; charset=utf-8 Host: 192.168.5.150 { "number": "6466" }
HTTP/1.1 200 OK Server: Boa/0.94.14rc21 Accept-Ranges: bytes Connection: close Content-Type: application/json Access-control-allow-origin: * Access-control-allow-methods: GET, POST, OPTIONS, PUT, DELETE { "status": "Success", "conferences": [ { "number": "6466", "name": " 6466", "moderators": "4000", "members": "4001" } ] }