Webex · Schema

PutDeviceSettingsRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
customizations object Indicates the customization object of the device settings.
customEnabled boolean Indicates if customization is allowed at a device level. If true, customized at a device level. If false, not customized; uses customer-level configuration.
View JSON Schema on GitHub

JSON Schema

webex-putdevicesettingsrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PutDeviceSettingsRequest",
  "title": "PutDeviceSettingsRequest",
  "type": "object",
  "required": [
    "customizations",
    "customEnabled"
  ],
  "properties": {
    "customizations": {
      "$ref": "#/components/schemas/CustomizationDeviceLevelObjectDevice",
      "description": "Indicates the customization object of the device settings."
    },
    "customEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Indicates if customization is allowed at a device level. If true, customized at a device level. If false, not customized; uses customer-level configuration."
    }
  }
}