Undeaf a Member

Restore audio reception for previously deafened members so they can hear other participants again.

This API allows you to undeaf members who were previously deafened. Once undeafened, members will be able to hear audio from other participants in the conference again.

Authentication Required:

  • X-Auth-ID: Your account ID (e.g., {Auth_ID})
  • X-Auth-Token: Your account Auth Token
  • Content-Type: application/json

Note: This operation reverses the deaf state. If a member was never deafened, this call will have no effect but will still return success.

HTTP Request

DELETE/api/v1/account/{auth_id}/conference/{conference_name}/member/{member_id}/deaf/

The member_id can be: a specific member_id, comma-separated list, or "all" to undeaf all members.

Request Body

JSON
{}

No request body parameters required. Send an empty JSON object.

Response

Response - 204 No Content
{
  "message": "undeaf",
  "member_id": ["10"],
  "api_id": "66d7c41e-58c4-11e1-86da-adf28403fe48"
}

Examples

Undeaf Specific Member

cURL Request
curl -X DELETE https://api.vobiz.ai/api/v1/Account/{auth_id}/Conference/MyConf/Member/10/Deaf/ \
                  -H "X-Auth-ID: YOUR_AUTH_ID" \
                  -H "X-Auth-Token: YOUR_AUTH_TOKEN"

Undeaf Multiple Members

cURL Request
curl -X DELETE https://api.vobiz.ai/api/v1/Account/{auth_id}/Conference/MyConf/Member/10,15,22/Deaf/ \
                  -H "X-Auth-ID: YOUR_AUTH_ID" \
                  -H "X-Auth-Token: YOUR_AUTH_TOKEN"

Undeaf All Members

cURL Request
curl -X DELETE https://api.vobiz.ai/api/v1/Account/{auth_id}/Conference/MyConf/Member/all/Deaf/ \
                  -H "X-Auth-ID: YOUR_AUTH_ID" \
                  -H "X-Auth-Token: YOUR_AUTH_TOKEN"

Common Use Cases:

  • • Switch from listen-only to interactive mode
  • • Enable Q&A session after presentation
  • • Restore full audio after audio playback completes
  • • Re-enable conference participation after isolation