POST /api/v0.0.1/conference/update?token={token}&type={type}
参数 | 是否必选 | 类型 | 描述 |
number | 是 | String | 固定会议室号码。 |
name | 否 | String | 固定会议室名称。注: 不允许输入以下字符:&'<>`|$]"。 |
participantepassword | 否 | String | 与会者密码。注: 只允许输入数字。 |
moderatorpassword | 否 | String | 主持人密码。注: 只允许输入数字。 |
waitformoderator | 否 | String |
是否等候主持人进入后才开始会议。 取值范围:
|
参数 | 类型 | 描述 |
status | String |
请求结果。
|
请求示例
修改会议室8000。
POST /api/v0.0.1/conference/update?token=813b621cfe8eecf445a2ce1f4a079ffe&type=json
Content-Type:application/json; charset=utf-8
Host: 192.168.5.150
{
"number":"8000",
"participantepassword":"444444",
"moderatorpassword":"555555",
"waitformoderator":"yes"
}
响应示例
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"
}
HTTP/1.1 200 OK
Access-control-allow-origin: *
Access-control-allow-methods: GET, POST, OPTIONS, PUT, DELETE
<?xml version="1.0" encoding="utf-8"?>
<xml>
<status>Success</status>
</xml>