Skip to main content
DELETE
/
api
/
v1
/
account
/
{auth_id}
/
conference
/
{conference_name}
/
member
/
{member_id}
/
play
Stop audio for a member
curl --request DELETE \
  --url https://api.vobiz.ai/api/v1/account/{auth_id}/conference/{conference_name}/member/{member_id}/play/ \
  --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}/play/
Use this endpoint to stop audio currently playing to one or more members of a conference. This is useful for interrupting audio playback before it completes naturally.
Authentication required:
  • X-Auth-ID - Your account ID (e.g., {auth_id})
  • X-Auth-Token - Your account Auth Token
  • Content-Type: application/json
If no audio is currently playing to the specified member(s), this call has no effect but still returns success.
The member_id can be a specific member ID, a comma-separated list, or all to stop audio for all members.

Request Body

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

Response

Response - 204 No Content
{
  "message": "play stopped",
  "member_id": ["10"],
  "api_id": "8b6fa2b8-58c4-11e1-86da-adf28403fe48"
}

Examples

curl -X DELETE https://api.vobiz.ai/api/v1/Account/{auth_id}/Conference/MyConf/Member/10/Play/ \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN"
Common Use Cases:
  • Stop hold music when participant becomes active
  • Interrupt announcements for urgent updates
  • Cancel audio playback when member presses DTMF key
  • Stop broadcast messages early

Authorizations

X-Auth-ID
string
header
required

Your Vobiz account Auth ID

X-Auth-Token
string
header
required

Your Vobiz account Auth Token

Path Parameters

auth_id
string
required

Your account Auth ID

Example:

"MA_XXXXXX"

conference_name
string
required
member_id
string
required

Response

204

Playback stopped