This API lets you mute members of a conference. Audio from their device will be muted, and other members in the conference will not be able to hear the caller.
Authentication Required:
- • X-Auth-ID: Your account ID (e.g., {Auth_ID})
- • X-Auth-Token: Your account Auth Token
- • Content-Type: application/json
Note: Muted members can still hear other participants. They just cannot be heard by others. To prevent a member from hearing, use the Deaf Member endpoint.
HTTP Request
POST
https://api.vobiz.ai/api/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Mute/The member_id can be: a specific member_id, comma-separated list, or "all" to mute all members.
Request Body
JSON
{}No request body parameters required. Send an empty JSON object.
Response
Response - 200 OK
{
"message": "muted",
"member_id": "10",
"api_id": "2867b6e2-58c3-11e1-86da-adf28403fe48"
}Examples
Mute Specific Member
cURL Request
curl -X POST 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" \
-H "Content-Type: application/json"Mute All Members
cURL Request
curl -X POST https://api.vobiz.ai/api/v1/Account/{auth_id}/Conference/MyConf/Member/all/Mute/ \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json"Common Use Cases:
- • Mute all members during presenter mode
- • Silence disruptive participants
- • Temporary mute during announcements
- • Q&A session control