Webex · Schema

ExternalVoicemailMwiRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
action string Indicates whether to SET or CLEAR the MWI status.
View JSON Schema on GitHub

JSON Schema

webex-externalvoicemailmwirequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExternalVoicemailMwiRequest",
  "title": "ExternalVoicemailMwiRequest",
  "type": "object",
  "required": [
    "action"
  ],
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "SET",
        "CLEAR"
      ],
      "description": "Indicates whether to SET or CLEAR the MWI status.",
      "example": "SET"
    }
  }
}