> 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-tr/servisler/oda-yonetimi/oda-guncelleme.md).

# Oda Güncelleme

Aşağıda, bir oda oluştururken gönderebileceğiniz parametreleri bulabilirsiniz:

<table data-full-width="false"><thead><tr><th width="155">Parametre</th><th width="126">Tip</th><th width="128">Zorunlu</th><th width="122.8887939453125">Varsayılan</th><th>Açıklama</th></tr></thead><tbody><tr><td>name</td><td>string</td><td>Hayır</td><td>null</td><td>Oda adı</td></tr><tr><td>lang</td><td>string</td><td>Hayır</td><td>null</td><td>Oda oturumunun dili (<a href="/pages/jn8hFrbjV7ogmd6AhqFG">bkz.</a>)</td></tr><tr><td>tags</td><td>string</td><td>Hayır</td><td>null</td><td>Oda oturumunun etiketleri. Virgüller ile ayrılır</td></tr><tr><td>inaccessible_replay</td><td>bool</td><td>Hayır</td><td>null</td><td>Oda oturumunun kaydının erişime açık olmayacağı anahtarı</td></tr><tr><td>options</td><td><a href="/pages/n3tFLWHm00VpqyNG8x3u">Session Options Objesi</a></td><td>Hayır</td><td><em>null</em></td><td>Oda oturumunun seçenekleri  (<a href="/pages/n3tFLWHm00VpqyNG8x3u">bkz.</a>)</td></tr><tr><td>room_hosts</td><td>string[]</td><td>Hayır</td><td>null</td><td>Oda eğitmenleri olarak atanacak kullanıcı GUID listesi</td></tr></tbody></table>

{% hint style="warning" %}
Bir oda için **name** parametresi özgün olmalıdır.

⚠️ Güncelleme işleminde tüm parametreler opsiyoneldir. Sadece gönderilen parametreler güncellenir
{% endhint %}

**Örnek istek**

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

```bash
curl -L -X PUT 'https://<DOMAIN>/api/groups/xapi/room/:ROOM_GUID' \
-H 'Content-Type: application/json' \
--data-raw '{
  "name": "Güncellenmiş Oda Adı",
  "lang": "tr-TR",
  "tags": "güncellenmiş, eğitim, test",
  "inaccessible_replay": true,
  "room_hosts": ["<user_guid_1>", "<user_guid_2>"]
  "options": {
    "allow_rating": false,
    "preparation_time": 10,
    "session_duration": 90,
    "Chat": {
      "OffMessageModule": true,
      "OffGeneralMsging": false
    },
    "Duration": {
      "AllowExtendTime": false,
      "UseRemainingTime": true
    },
    "allow_users_stream_self_cam_mic": false,
    "hide_user_streams": true,
    "enable_attendance_check": false,
    "allow_reactions": false
  }
}'
```

{% endtab %}
{% endtabs %}

**Örnek yanıt**

Başarılı bir güncelleme operasyonu `200 OK`  kodu ile birlikte aşağıdaki gövdeyi döner:

```json
{
  "room_guid": "B5530B7F-6414-4046-87A6-67730D5F9F08",
  "name": "Güncellenmiş Oda Adı",
  "lang": "tr-TR",
  "url": "https://yourdomain.com/groups/room/guncellenmiş-oda-adi_{0}",
  "created_date": "2025-08-14T13:02:00",
  "tags": "güncellenmiş, eğitim, test",
  "inaccessible_replay": true,
  "room_hosts": ["A1B2C3D4-E5F6-7890-ABCD-EF1234567890"],
  "ui_options": {
    "allow_rating": false,
    "preparation_time": 10,
    "session_duration": 90,
    "chat": {
      "offMessageModule": true,
      "offGeneralMsging": false,
      "offGeneralMsgLimitForUser": false,
      "offSpecialMsging": false,
      "offSpecialMsgToAdmin": false,
      "offSpecialMsgToUser": false,
      "offNewMsgSound": false,
      "offClearForReplay": false,
      "onNewMsgSoundInAll": false,
      "onNewMsgNotifyInAll": false
    },
    "duration": {
      "allowExtendTime": false,
      "useRemainingTime": true
    },
    "allow_users_stream_self_cam_mic": false,
    "hide_user_streams": true,
    "enable_attendance_check": false,
    "enable_simultaneous_interpretation": false,
    "enable_simultaneous_interpretation_for_users": false,
    "start_active": false,
    "return_url": "",
    "allow_reactions": false
  }
}

```
