Play an audio file to a specific conference 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"
}
'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.
POST https://api.vobiz.ai/api/v1/account/{auth_id}/conference/{conference_name}/member/{member_id}/play/
X-Auth-ID - Your account ID (e.g., {auth_id})X-Auth-Token - Your account Auth TokenContent-Type: application/jsonmember_id can be a specific member ID, a comma-separated list, or all to play audio to all members.| Field | Type | Required | Description |
|---|---|---|---|
url | string | Yes | URL of the audio file to play. Must be accessible via HTTPS. Supported formats: MP3, WAV. |
{
"message": "play started",
"api_id": "7a5e9f0a-58c4-11e1-86da-adf28403fe48",
"member_id": ["10"]
}
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"}'
Your Vobiz account Auth ID
Your Vobiz account Auth Token
Your account Auth ID
"MA_XXXXXX"
URL of the audio file to play
"https://example.com/audio.mp3"
Audio playback started
Was this page helpful?
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"
}
'