Get a single room member

View as Markdown
Return one [room member](/api/room-members). `{uuid}` is the member's session UUID, the same identifier `GET /api/v1/rooms/{room_id}/members` returns. The response is the same member object the list returns: `{uuid, muted}` and nothing more — talking state is delivered only via the `room.member.talking` webhook, never on this object.

Authentication

AuthorizationBearer
Application auth. Send `Authorization: Bearer <app_uuid>:<api_key>`. See [Authentication](https://voice-platform.docs.buildwithfern.com/api/authentication) for details.

Path parameters

room_idstringRequired

Room ID (format {prefix}-room-{uuid}). The UUID portion is lowercase hexadecimal — uppercase hex is rejected with 400.

uuidstringRequired

Session UUID (format {5-char-prefix}-{uuid}).

Response

Member of the room
mutedboolean
Whether the member is currently muted in the room.
uuidstring
Session UUID of the member.

Errors

400
Bad Request Error
401
Unauthorized Error
404
Not Found Error
500
Internal Server Error