> For the complete documentation index, see [llms.txt](https://developer.perculus.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.perculus.com/v2-en/services/room-management/user-detail.md).

# Selecting a Room

**Example payload:**

{% tabs %}
{% tab title="CURL" %}

```bash
curl -L -X GET  'https://<DOMAIN>/api/groups/xapi/room/:ROOM_GUID'
```

{% endtab %}
{% endtabs %}

**Example response:**

A successful operation will return `200 OK` with the following body:

```json
{
    "room_guid": "3240EBC0-19EA-4208-97CC-BFF1F50562EB",
    "name": "Test Room",
    "lang": "en-US",
    "url": "https://<DOMAIN>/groups/room/test-room_{0}",
    "tags": null,
    "inaccessible_replay": false,
    "allow_recording": true,
    "flow_id": null,
    "ui_options": {
        "allow_rating": true,
        "preparation_time": 250,
        "session_duration": 20,
        "chat": {
            "offMessageModule": true,
            "offGeneralMsging": false,
            "offGeneralMsgLimitForUser": false,
            "offSpecialMsging": false,
            "offSpecialMsgToAdmin": false,
            "offSpecialMsgToUser": false,
            "offNewMsgSound": false,
            "offClearForReplay": false,
            "onNewMsgSoundInAll": false,
            "onNewMsgNotifyInAll": true
        },
        "duration": {
            "allowExtendTime": true,
            "useRemainingTime": false
        },
        "allow_users_stream_self_cam_mic": true,
        "hide_user_streams": false,
        "enable_attendance_check": true,
        "enable_simultaneous_interpretation": false,
        "enable_simultaneous_interpretation_for_users": false,
        "start_active": false,
        "return_url": "",
        "allow_reactions": true,
        "enable_recording_auto_start": null,
        "skip_approval_on_join": null,
        "enable_session_auto_start": null,
        "enable_session_auto_finish": null
    },
    "created_date": "2025-08-14T13:02:00",
}
```
