> ## 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.

# Conference Members

> Control individual Vobiz conference members - mute, deaf, kick, hang up, and play audio or text to a single participant without affecting others.

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.

<Info>
  **Authentication required:**

  * `X-Auth-ID` - Your account ID (e.g., `{auth_id}`)
  * `X-Auth-Token` - Your account Auth Token
  * `Content-Type: application/json`
</Info>

## 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/
```

<Warning>
  **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.
</Warning>

## Control Operations

| Method | Operation                                              | Description                                                                                                 |
| ------ | ------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- |
| DELETE | [Hang Up a Member](/conference/members/hang-up-member) | Immediately disconnect a member from the conference. The call is terminated completely.                     |
| POST   | [Kick a Member](/conference/members/kick-member)       | Disconnect a member but allow XML flow continuation. Member can hear next XML elements after disconnection. |
| POST   | [Mute a Member](/conference/members/mute-member)       | Mute a member's audio so other participants cannot hear them. Member can still hear the conference.         |
| DELETE | [Unmute a Member](/conference/members/unmute-member)   | Unmute a previously muted member allowing them to be heard by other participants again.                     |
| POST   | [Deaf a Member](/conference/members/deaf-member)       | Prevent a member from hearing conference audio. They can still speak but won't hear others.                 |
| DELETE | [Undeaf a Member](/conference/members/undeaf-member)   | Restore hearing for a deafened member allowing them to hear conference audio again.                         |

## Audio & Text Operations

| Method | Operation                                                | Description                                                                              |
| ------ | -------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
| POST   | [Play Audio to a Member](/conference/members/play-audio) | Play audio files to specific conference members. Useful for announcements or hold music. |
| DELETE | [Stop Audio to a Member](/conference/members/stop-audio) | Stop ongoing audio playback for specific members.                                        |
| POST   | [Speak Text to a Member](/conference/members)            | Convert text to speech and play it to specific conference members using TTS engine.      |
| DELETE | [Stop Speaking to a Member](/conference/members)         | Stop ongoing text-to-speech playback for specific members.                               |
