Skip to main content

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.

This resource lets you perform actions on members of a conference. You can control audio states (mute/deaf), remove participants (kick/hang up), and play audio or text to specific members.
Authentication required:
  • X-Auth-ID - Your account ID (e.g., {auth_id})
  • X-Auth-Token - Your account Auth Token
  • Content-Type: application/json

Member Targeting

Most member operations support flexible targeting allowing you to act on individual members, multiple members, or all members at once:

Single Member - member_id

Target a specific member by their member_id (e.g., “17”). Only that member is affected.
/Member/17/Mute/

Multiple Members - comma-separated list

Target multiple specific members by providing a comma-separated list of member IDs.
/Member/17,45,82/Mute/

All Members - "all"

Use the string “all” to target every member in the conference simultaneously.
/Member/all/Mute/
Note: Member IDs can be retrieved from the conference details when you call the Retrieve a Conference endpoint. Each member has a unique ID within that conference.

Control Operations

MethodOperationDescription
DELETEHang Up a MemberImmediately disconnect a member from the conference. The call is terminated completely.
POSTKick a MemberDisconnect a member but allow XML flow continuation. Member can hear next XML elements after disconnection.
POSTMute a MemberMute a member’s audio so other participants cannot hear them. Member can still hear the conference.
DELETEUnmute a MemberUnmute a previously muted member allowing them to be heard by other participants again.
POSTDeaf a MemberPrevent a member from hearing conference audio. They can still speak but won’t hear others.
DELETEUndeaf a MemberRestore hearing for a deafened member allowing them to hear conference audio again.

Audio & Text Operations

MethodOperationDescription
POSTPlay Audio to a MemberPlay audio files to specific conference members. Useful for announcements or hold music.
DELETEStop Audio to a MemberStop ongoing audio playback for specific members.
POSTSpeak Text to a MemberConvert text to speech and play it to specific conference members using TTS engine.
DELETEStop Speaking to a MemberStop ongoing text-to-speech playback for specific members.