Unmute a Member
Restore audio from previously muted members so other participants can hear them again.
This API allows you to unmute members who were previously muted. Once unmuted, the audio from their device will be transmitted to other participants in the conference.
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 mute state. If a member was never muted, this call will have no effect but will still return success.
HTTP Request
DELETE
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 unmute all members.
Request Body
JSON
{}No request body parameters required. Send an empty JSON object.
Response
Response - 204 No Content
{
"message": "unmuted",
"member_id": ["10"],
"api_id": "4d944694-58c4-11e1-86da-adf28403fe48"
}Examples
Unmute Specific Member
cURL Request
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"Unmute Multiple Members
cURL Request
curl -X DELETE https://api.vobiz.ai/api/v1/Account/{auth_id}/Conference/MyConf/Member/10,15,22/Mute/ \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN"Unmute All Members
cURL Request
curl -X DELETE 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"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