Webex · Schema

InterceptPatch

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean `true` if call interception is enabled.
incoming object Settings related to how incoming calls are handled when the intercept feature is enabled.
outgoing object Settings related to how outgoing calls are handled when the intercept feature is enabled.
View JSON Schema on GitHub

JSON Schema

webex-interceptpatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InterceptPatch",
  "title": "InterceptPatch",
  "type": "object",
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "`true` if call interception is enabled."
    },
    "incoming": {
      "$ref": "#/components/schemas/InterceptIncomingPatch",
      "description": "Settings related to how incoming calls are handled when the intercept feature is enabled."
    },
    "outgoing": {
      "$ref": "#/components/schemas/InterceptOutGoingPatch",
      "description": "Settings related to how outgoing calls are handled when the intercept feature is enabled."
    }
  }
}