Webex · Schema

CallNotifyGet

User call notify settings response object containing configurations of Criteria and whether CallNotify is enabled.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Indicates whether the call notify feature is enabled for the user.
emailAddress string Email Address to which call notifications to be received.
criteria array List of Call Notify Criteria configured by the user.
View JSON Schema on GitHub

JSON Schema

webex-callnotifyget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallNotifyGet",
  "title": "CallNotifyGet",
  "type": "object",
  "description": "User call notify settings response object containing configurations of Criteria and whether CallNotify is enabled.",
  "example": {
    "enabled": false,
    "emailAddress": "[email protected]",
    "criteria": [
      {
        "id": "Y2lzY29zcGFyazovL3VzL0NSSVRFUklBL1oxNzU0MzgzODQzNTA5NzY",
        "scheduleName": "CustomHoliday(Group)",
        "source": "ALL_NUMBERS",
        "notificationEnabled": false
      }
    ]
  },
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Indicates whether the call notify feature is enabled for the user."
    },
    "emailAddress": {
      "type": "string",
      "description": "Email Address to which call notifications to be received."
    },
    "criteria": {
      "type": "array",
      "description": "List of Call Notify Criteria configured by the user.",
      "items": {
        "$ref": "#/components/schemas/CallNotifyCriteriaListGet"
      }
    }
  }
}