Skip to main content
POST
/
api
/
v1
/
account
/
{auth_id}
/
conference
/
{conference_name}
/
member
/
{member_id}
/
deaf
Mute a member's audio
curl --request POST \
  --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.

POST https://api.vobiz.ai/api/v1/account/{auth_id}/conference/{conference_name}/member/{member_id}/deaf/
Use this endpoint to deafen members of a conference. When deafened, members cannot hear audio from other participants, but they remain connected to the conference and can still be heard by others.
Deaf vs Mute:
  • Deaf: Member cannot hear others (incoming audio blocked)
  • Mute: Others cannot hear the member (outgoing audio blocked)
Authentication required:
  • X-Auth-ID - Your account ID (e.g., {auth_id})
  • X-Auth-Token - Your account Auth Token
  • Content-Type: application/json
Deafened members can still speak and be heard by others. To prevent them from being heard, use the Mute Member endpoint.
The member_id can be a specific member ID, a comma-separated list, or all to deafen all members.

Request Body

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

Response

Response - 200 OK
{
  "message": "deaf",
  "member_id": "10",
  "api_id": "5a3c8c80-58c4-11e1-86da-adf28403fe48"
}

Examples

curl -X POST 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" \
  -H "Content-Type: application/json" \
  -d '{}'
Common Use Cases:
  • Create listen-only mode for webinar attendees
  • Prevent feedback loops during audio playback
  • Isolate members for private whisper conversations
  • Testing scenarios where member should not hear conference

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 deafened