Webex · Schema

InterceptAnnouncementsPatch

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
greeting string System default message is placed when incoming calls are intercepted. * `CUSTOM` - A custom greeting is played when incoming calls are intercepted. * `DEFAULT` - A System default greeting is played wh
newNumber object Information about the new number announcement.
zeroTransfer object Information about how the call is handled if zero (0) is pressed.
View JSON Schema on GitHub

JSON Schema

webex-interceptannouncementspatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InterceptAnnouncementsPatch",
  "title": "InterceptAnnouncementsPatch",
  "type": "object",
  "properties": {
    "greeting": {
      "type": "string",
      "enum": [
        "CUSTOM",
        "DEFAULT"
      ],
      "description": "System default message is placed when incoming calls are intercepted.\n * `CUSTOM` - A custom greeting is played when incoming calls are intercepted.\n * `DEFAULT` - A System default greeting is played when incoming calls are intercepted.\n"
    },
    "newNumber": {
      "$ref": "#/components/schemas/InterceptNumberPatch",
      "description": "Information about the new number announcement."
    },
    "zeroTransfer": {
      "$ref": "#/components/schemas/InterceptNumberPatch",
      "description": "Information about how the call is handled if zero (0) is pressed."
    }
  }
}