POST /api/v0.0.1/conference/query?token={token}&type={type}
参数 | 是否必选 | 类型 | 描述 |
number | 是 | String |
固定会议室号码。 取值范围:
例如:“number”:“6500”
例如:“number”:“6500,7500,8000”
|
参数 | 类型 | 描述 |
status | String |
请求结果。
|
conferences | Array <ConferenceInfo> | 会议室信息列表。 |
ConferenceInfo
参数 | 类型 | 描述 |
number | String | 会议室号码。 |
name | String | 会议室名称。 |
participantepassword | String | 与会者密码。 |
moderatorpassword | String | 主持人密码。 |
waitformoderator | String |
是否等候主持人进入后才开始会议。
|
请求示例
查询固定会议室6400的配置详情。
POST /api/v0.0.1/conference/query?token=813b621cfe8eecf445a2ce1f4a079ffe&type=json
Content-Type:application/json; charset=utf-8
Host: 172.16.6.150
{
"number": "all"
}
响应示例
HTTP/1.1 200 OK
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": "6500",
"name": "6500",
"participantepassword": "111111",
"moderatorpassword": "222222",
"waitformoderator": "no"
},
{
"number": "7500",
"name": "7500",
"participantepassword": "",
"moderatorpassword": "",
"waitformoderator": "no"
},
{
"number": "8000",
"name": "testapi1",
"participantepassword": "444444",
"moderatorpassword": "555555",
"waitformoderator": "no"
}
]
}