Webex · Schema

InterceptGet

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean `true` if call intercept 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-interceptget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InterceptGet",
  "title": "InterceptGet",
  "type": "object",
  "required": [
    "enabled",
    "incoming",
    "outgoing"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "`true` if call intercept is enabled."
    },
    "incoming": {
      "$ref": "#/components/schemas/InterceptIncomingGet",
      "description": "Settings related to how incoming calls are handled when the intercept feature is enabled."
    },
    "outgoing": {
      "$ref": "#/components/schemas/InterceptOutGoingGet",
      "description": "Settings related to how outgoing calls are handled when the intercept feature is enabled."
    }
  }
}