Webex · Schema

PutLocationCallNotificationObject

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 Sends an email to this email address when a call is made from this location to emergency services and `emergencyCallNotificationEnabled` is true.
View JSON Schema on GitHub

JSON Schema

webex-putlocationcallnotificationobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PutLocationCallNotificationObject",
  "title": "PutLocationCallNotificationObject",
  "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": "Sends an email to this email address when a call is made from this location to emergency services and `emergencyCallNotificationEnabled` is true."
    }
  }
}