Mute a Call

Mute a specified member in a call.

Request URL

{base_url}/{api_path}/call/mute?token={token}

Request parameters

Parameter Required Type Description
channelid Yes String The call channel ID of each member during the call.

Valid values:

Support to enter multiple channelids. Separate multiple channelids by commas.

Response parameters

Parameter Type Description
status String Request result.
  • Success
  • Failed
callid String The unique ID of each call.

Examples

Request example
POST /api/v2.0.0/call/mute?token=1166cd917bfc7bb4622cc4a636616cd5 HTTP/1.1
Content-Type:application/json; charset=utf-8
Host: 192.168.5.150

{
	"channelid": "PJSIP/1023-000000a9"
} 
Response example
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",
   "callid":"1571640953.274"
}