Webex · Schema
ModifyUserMSTeamsSettingsObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| settingName | string | The enum value to be set to `HIDE_WEBEX_APP`. * `HIDE_WEBEX_APP` - Webex will continue to run but its windows will be closed by default. Users can still access Webex from the system tray on Windows or |
| value | boolean | The boolean value to update the `HIDE_WEBEX_APP` setting, either `true` or `false`. Set to `null` to delete the `HIDE_WEBEX_APP` setting. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ModifyUserMSTeamsSettingsObject",
"title": "ModifyUserMSTeamsSettingsObject",
"type": "object",
"required": [
"settingName",
"value"
],
"properties": {
"settingName": {
"type": "string",
"enum": [
"HIDE_WEBEX_APP"
],
"description": "The enum value to be set to `HIDE_WEBEX_APP`.\n * `HIDE_WEBEX_APP` - Webex will continue to run but its windows will be closed by default. Users can still access Webex from the system tray on Windows or the Menu Bar on Mac.\n"
},
"value": {
"type": "boolean",
"example": true,
"description": "The boolean value to update the `HIDE_WEBEX_APP` setting, either `true` or `false`. Set to `null` to delete the `HIDE_WEBEX_APP` setting."
}
}
}