import plivo

client = plivo.RestClient('<auth_id>','<auth_token>')
response = client.conferences.member_mute_stop(
    conference_name='testing',
    member_id=29283, )
print(response)
HTTP Status Code: 204

This API lets you mute members of a conference. Audio from their device will be muted, and other members in the conference will not be able to hear the caller.

API Endpoint

DELETE
https://api.plivo.com/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Mute/

The member_id attribute that’s passed in the URL can be a member_id, a comma-separated list of member IDs on which this operation will be performed, or the string all. In the latter case, the unmute action is performed on all members of the conference.

Attributes

No arguments need to be passed.

import plivo

client = plivo.RestClient('<auth_id>','<auth_token>')
response = client.conferences.member_mute_stop(
    conference_name='testing',
    member_id=29283, )
print(response)
HTTP Status Code: 204