Webex · Schema

CallNotifyPatch

Request body for updating call notify settings.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Indicates whether the call notify feature should be enabled or disabled for the user.
emailAddress string Email Address to which call notifications to be received.
View JSON Schema on GitHub

JSON Schema

webex-callnotifypatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallNotifyPatch",
  "title": "CallNotifyPatch",
  "type": "object",
  "description": "Request body for updating call notify settings.",
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Indicates whether the call notify feature should be enabled or disabled for the user.",
      "example": false
    },
    "emailAddress": {
      "type": "string",
      "description": "Email Address to which call notifications to be received.",
      "example": "[email protected]"
    }
  },
  "required": [
    "enabled"
  ]
}