Webex · Schema

OrgCallNotificationObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
emergencyCallNotificationEnabled boolean When true sends an email to the specified email address when a call is made to emergency services.
allowEmailNotificationAllLocationEnabled boolean Send an emergency call notification email for all locations.
emailAddress string When `emergencyCallNotificationEnabled` is true, the emergency notification email is sent to the specified email address.
View JSON Schema on GitHub

JSON Schema

webex-orgcallnotificationobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrgCallNotificationObject",
  "title": "OrgCallNotificationObject",
  "type": "object",
  "properties": {
    "emergencyCallNotificationEnabled": {
      "type": "boolean",
      "example": true,
      "description": "When true sends an email to the specified email address when a call is made to emergency services."
    },
    "allowEmailNotificationAllLocationEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Send an emergency call notification email for all locations."
    },
    "emailAddress": {
      "type": "string",
      "example": "[email protected]",
      "description": "When `emergencyCallNotificationEnabled` is true, the emergency notification email is sent to the specified email address."
    }
  }
}