Webex · Schema

PlaceDoNotDisturbGet

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean `true` if the DoNotDisturb feature is enabled.
ringSplashEnabled boolean When `true`, enables ring reminder when you receive an incoming call while on Do Not Disturb.
View JSON Schema on GitHub

JSON Schema

webex-placedonotdisturbget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlaceDoNotDisturbGet",
  "title": "PlaceDoNotDisturbGet",
  "type": "object",
  "required": [
    "enabled",
    "ringSplashEnabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "`true` if the DoNotDisturb feature is enabled."
    },
    "ringSplashEnabled": {
      "type": "boolean",
      "description": "When `true`, enables ring reminder when you receive an incoming call while on Do Not Disturb."
    }
  }
}