Skip to main content

View a room participant.

GET 
/room_participants/:room_participant_id

View a room participant.

Request

Path Parameters

    room_participant_id uuidrequired

    The unique identifier of a room participant.

Responses

200: Get room participant response.

404: Resource not found

Request samples


curl -L 'https://api.telnyx.com/v2/room_participants/:room_participant_id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"data": {
"id": "7b61621f-62e0-4aad-ab11-9fd19e272e73",
"session_id": "7b61621f-5fe4-4aad-ab11-9fd19e272e73",
"context": "Alice",
"joined_at": "2021-04-16T09:46:20.954863Z",
"updated_at": "2021-04-16T10:24:55.962200Z",
"left_at": "2021-04-16T10:24:55.962200Z",
"record_type": "room_participant"
}
}