Skip to main content
POST
/
api
/
v1
/
Account
/
{auth_id}
/
Conference
/
{conference_name}
/
Member
/
{member_id}
/
Play
/
Play audio to a member
curl --request POST \
  --url https://api.vobiz.ai/api/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Play/ \
  --header 'Content-Type: application/json' \
  --header 'X-Auth-ID: <api-key>' \
  --header 'X-Auth-Token: <api-key>' \
  --data '
{
  "url": "https://example.com/audio.mp3"
}
'
POST https://api.vobiz.ai/api/v1/Account/{auth_id}/Conference/{conference_name}/Member/{member_id}/Play/
Use this endpoint to play an audio file to one or more members of a conference. Only the specified members will hear the audio; other participants are not affected.
Authentication required:
  • X-Auth-ID - Your account ID (e.g., {auth_id})
  • X-Auth-Token - Your account Auth Token
  • Content-Type: application/json
Privacy: Audio is played exclusively to the targeted member(s). Other conference participants will not hear the audio being played.
Supported Formats: MP3, WAV. Audio files must be accessible via HTTPS URL.
The member_id can be a specific member ID, a comma-separated list, or all to play audio to all members.

Request Parameters

FieldTypeRequiredDescription
urlstringYesURL of the audio file to play. Must be accessible via HTTPS. Supported formats: MP3, WAV.

Response

Response - 200 OK
{
  "message": "play started",
  "api_id": "7a5e9f0a-58c4-11e1-86da-adf28403fe48",
  "member_id": ["10"]
}

Examples

curl -X POST 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" \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com/audio/welcome.mp3"}'
Common Use Cases:
  • Play hold music while waiting
  • Deliver private announcements to specific members
  • Play instructions or prompts during the conference
  • Broadcast alerts or notifications to all participants

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

Body

application/json
url
string
required

URL of the audio file to play

Example:

"https://example.com/audio.mp3"

Response

200

Audio playback started