Webex · Schema

GetLocationCallNotificationObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
emergencyCallNotificationEnabled boolean When true sends an email to the specified email address when a call is made from this location to emergency services.
emailAddress string When `emergencyCallNotificationEnabled` is true, the emergency notification email is sent to the specified email address.
organization object All locations at organization level
View JSON Schema on GitHub

JSON Schema

webex-getlocationcallnotificationobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetLocationCallNotificationObject",
  "title": "GetLocationCallNotificationObject",
  "type": "object",
  "properties": {
    "emergencyCallNotificationEnabled": {
      "type": "boolean",
      "example": true,
      "description": "When true sends an email to the specified email address when a call is made from this location to emergency services."
    },
    "emailAddress": {
      "type": "string",
      "example": "[email protected]",
      "description": "When `emergencyCallNotificationEnabled` is true, the emergency notification email is sent to the specified email address."
    },
    "organization": {
      "type": "object",
      "properties": {
        "emergencyCallNotificationEnabled": {
          "type": "boolean",
          "example": true,
          "description": "When true sends an email to the specified email address when a call is made from this location 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."
        }
      },
      "description": "All locations at organization level"
    }
  }
}