> ## Documentation Index
> Fetch the complete documentation index at: https://vobiz.ai/docs/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>
  Capture `ConferenceMemberID` from conference `enter` callbacks. The Retrieve a Conference endpoint does not currently return reliable live member details. Member IDs are scoped to a conference session and may be reused after a participant leaves and rejoins.
</Warning>

## Control Operations

| Method | Operation                                              | Description                                                                                                                         |
| ------ | ------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------- |
| DELETE | [Hang Up a Member](/docs/conference/members/hang-up-member) | Ends a normal active member's call. After a Kick/rejoin sequence that reuses the same member ID, confirm removal through callbacks. |
| POST   | [Kick a Member](/docs/conference/members/kick-member)       | Disconnect a member but allow XML flow continuation. Member can hear next XML elements after disconnection.                         |
| POST   | [Mute a Member](/docs/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](/docs/conference/members/unmute-member)   | Unmute a previously muted member allowing them to be heard by other participants again.                                             |
| POST   | [Deaf a Member](/docs/conference/members/deaf-member)       | Prevent a member from hearing conference audio. They can still speak but won't hear others.                                         |
| DELETE | [Undeaf a Member](/docs/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](/docs/conference/members/play-audio) | Play audio files to specific conference members. Useful for announcements or hold music. |
| DELETE | [Stop Audio to a Member](/docs/conference/members/stop-audio) | Stop ongoing audio playback for specific members.                                        |
