Skip to main content
PATCH
/
sessions
/
{id}
/
settings
Update session runtime settings
curl --request PATCH \
  --url https://api.example.com/sessions/{id}/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "chat_enabled": true,
  "stage_enabled": true,
  "max_join_limit": 123
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Body

application/json
chat_enabled
boolean
stage_enabled
boolean
max_join_limit
integer

Response

200

Settings updated