Unmute Conference Members
Unmute a member, multiple members, or all members in a conference.
Request URL
POST {base_url}/{api_path}/conference/unmute_member?access_token={access_token}
Request parameters
| Parameter | Required | Type | Description |
|---|---|---|---|
| member_channel_id | Yes | String | The channel ID(s) of the member(s) to unmute. Valid
value:
Note: You can query the
member's channel ID using Query Ongoing Conferences. |
| number | Yes | String | Conference number. |
Response parameters
| Parameter | Type | Description |
|---|---|---|
| errcode | Integer | Returned error code.
Note: You can check the error code and
error message in Error Code and Error Message.
|
| errmsg | String | Returned message.
|
Examples
Request example
POST /openapi/v1.0/conference/unmute_member?access_token=InOCBejKj6m3hrSmWU7XWdCq1npfeyos HTTP/1.1
Host: 192.168.5.150:8088
Content-Type: application/json
{
"member_channel_id": "all",
"number": "6901"
}
Response example
HTTP/1.1 200 OK
{
"errcode": 0,
"errmsg": "SUCCESS"
}