Requires an active session cookie. The caller must be the guild owner, guild sponsor, or ADMIN+. Only provided fields are updated; omitted fields remain unchanged.
Discord snowflake ID of the guild.
Browser type for the room VM (e.g. brave, tor).
Proxy region (e.g. us, eu, none).
Default URL opened when the room VM starts. Max 2000 characters.
Whether to launch the browser in kiosk mode.
Whether users can request control of the VM.
Response
Returns the updated room settings object.
Browser type for the room VM.
Default URL opened when the room VM starts.
Whether kiosk mode is enabled.
Whether control requests are allowed.
curl -X PUT https://hapi.7331.org/v1/guilds/987654321098765432/room-settings \
-H "Content-Type: application/json" \
-b cookies.txt \
-d '{"browser": "tor", "kiosk": true}'
{
"browser": "tor",
"proxy": "none",
"start_url": "https://google.com",
"kiosk": true,
"allow_control_requests": true
}