import plivo

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

This method lets you un-deaf a member in a conference. When this operation is performed on a conference member it will reverse the effects of the Deaf a conference member API

API Endpoint

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

The member_id attribute which is passed in the URL can be one of the following three forms:

  1. Member ID: The member specified by the member_id.

  2. Comma separated list of member IDs: List of member IDs on which this operation will be performed.

  3. ‘all’: The string ‘all’, this action will be 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_deaf_stop(
    conference_name='testing',
    member_id=27697, )
print(response)
HTTP Status Code: 204