Edit

To edit your default room settings, execute a PATCH request against the root / endpoint.

You can update as many fields as you wish - the below example makes the toolbar color blue and also removes the chat functionality.

Request

curl --request PATCH \
  --header "Content-Type: application/json" \
  --url https://api.digitalsamba.com/api/v1 \
  --user YOUR_TEAM_ID:YOUR_DEVELOPER_KEY \
  --data '{"toolbar_color": "#0000ff", "chat_enabled": false}'

Response (200 OK)

{
  "domain": "myTeamNameHere",
  "toolbar_color": "#0000ff",
  "chat_enabled": false,
  ....................
}

Last updated