{base_url}/{api_path}/conference/kick_member?token={token}&type={type}
参数 | 是否必选 | 类型 | 描述 |
number | 是 | String | 会议室号码。表示要踢除哪个会议室的成员。 |
membernumber | 是 | Integer |
成员号码。取值范围:
例如:“membernumber”:“111”
例如:“membernumber”:“111,112”
|
参数 | 类型 | 描述 |
status | String |
请求结果。
|
请求示例请求从会议室8000踢除分机111。
POST /api/v2.0.0/conference/kick_member?token=813b621cfe8eecf445a2ce1f4a079ffe&type=json
Content-Type:application/json; charset=utf-8
Host: 172.16.6.150
{
"number":"8000",
"membernumber":"111"
}
响应示例
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>