Webex · Schema

UserBargeInPatch

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean `true` if the Barge In feature is enabled.
toneEnabled boolean When `true`, a tone is played when someone barges into a call.
View JSON Schema on GitHub

JSON Schema

webex-userbargeinpatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserBargeInPatch",
  "title": "UserBargeInPatch",
  "type": "object",
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "`true` if the Barge In feature is enabled."
    },
    "toneEnabled": {
      "type": "boolean",
      "description": "When `true`, a tone is played when someone barges into a call."
    }
  }
}