Allow a muted member to speak again.
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/
X-Auth-ID, X-Auth-Token, Content-Type: application/json| Parameter | Type | Required | Description |
|---|---|---|---|
auth_id | string | Yes | Your Vobiz account ID |
conference_name | string | Yes | Name of the conference |
member_id | string | Yes | Member ID, comma-separated list of IDs, or all |
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"
{
"message": "unmuted",
"member_id": ["10"],
"api_id": "4d944694-58c4-11e1-86da-adf28403fe48"
}
Was this page helpful?
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>'