Skip to main content
DELETE
/
api
/
v1
/
account
/
{auth_id}
/
conference
/
{conference_name}
/
member
/
{member_id}
/
deaf
Unmute a member's audio
curl --request DELETE \
  --url https://api.vobiz.ai/api/v1/account/{auth_id}/conference/{conference_name}/member/{member_id}/deaf/ \
  --header 'X-Auth-ID: <api-key>' \
  --header 'X-Auth-Token: <api-key>'

Documentation Index

Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt

Use this file to discover all available pages before exploring further.

DELETE https://api.vobiz.ai/api/v1/account/{auth_id}/conference/{conference_name}/member/{member_id}/deaf/
Use this endpoint to undeafen members who were previously deafened. Once undeafened, members can 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
This operation reverses the deaf state. If a member was never deafened, this call has no effect but still returns success.
The member_id can be a specific member ID, a comma-separated list, or all to undeafen 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

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"
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

Authorizations

X-Auth-ID
string
header
required

Your Vobiz account Auth ID

X-Auth-Token
string
header
required

Your Vobiz account Auth Token

Path Parameters

auth_id
string
required

Your account Auth ID

Example:

"MA_XXXXXX"

conference_name
string
required
member_id
string
required

Response

200

Member undeafened