Hang Up a Member

Disconnect a member from the conference by terminating their call.

This method lets you hang up a particular member of a conference. The member to be disconnected needs to be identified using the member_id.

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 completely terminates the member's call. For disconnecting while allowing XML flow continuation, use the Kick Member endpoint instead.

HTTP Request

DELETE/api/v1/account/{auth_id}/conference/{conference_name}/member/{member_id}/

The member_id can be: a specific member_id, comma-separated list, or "all" to hang up all members.

Request Body

JSON
{}

No request body parameters required. Send an empty JSON object.

Response

Response - 204 No Content
HTTP Status Code: 204

Examples

Hang Up Specific Member

cURL Request
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"

Hang Up All Members

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