Skip to main content
DELETE
/
api
/
v1
/
Account
/
{auth_id}
/
Conference
/
{conference_name}
/
Member
/
{member_id}
/
Mute
Unmute a conference member
curl --request DELETE \
  --url https://api.vobiz.ai/api/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Mute/ \
  --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}/Mute/
Unmute members who were previously muted. Once unmuted, their audio is transmitted to all other participants in the conference.
Authentication required: X-Auth-ID, X-Auth-Token, Content-Type: application/json
If a member was never muted, this call has no effect but returns success.

Path parameters

ParameterTypeRequiredDescription
auth_idstringYesYour Vobiz account ID
conference_namestringYesName of the conference
member_idstringYesMember ID, comma-separated list of IDs, or all

Request body

No request body required.

Examples

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

Response

200 OK
{
  "message": "unmuted",
  "member_id": ["10"],
  "api_id": "4d944694-58c4-11e1-86da-adf28403fe48"
}

Common use cases

  • End presenter mode and allow audience participation.
  • Restore audio after temporary mute during announcements.
  • Enable Q&A session participation.
  • Unmute after disruptive behavior has ceased.

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 unmuted