Webex · Schema

WebAccessObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Ability to enable or disable the web browser access for the 840/860.
password string Ability to set a Web Server Password.
View JSON Schema on GitHub

JSON Schema

webex-webaccessobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebAccessObject",
  "title": "WebAccessObject",
  "type": "object",
  "required": [
    "enabled",
    "password"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Ability to enable or disable the web browser access for the 840/860."
    },
    "password": {
      "type": "string",
      "example": "password",
      "description": "Ability to set a Web Server Password."
    }
  }
}