Disconnect a specific member from a conference.
curl --request DELETE \
--url https://api.vobiz.ai/api/v1/account/{auth_id}/conference/{conference_name}/member/{member_id}/ \
--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}/
member_id. This completely terminates the member’s call.
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/ \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN"
HTTP Status Code: 204
Was this page helpful?
curl --request DELETE \
--url https://api.vobiz.ai/api/v1/account/{auth_id}/conference/{conference_name}/member/{member_id}/ \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>'