Webex · Schema

ModifyCustomerMSTeamsSettingsObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
settingName string The enum value, either `HIDE_WEBEX_APP` or `PRESENCE_SYNC`, for the respective `settingName` to be updated. * `HIDE_WEBEX_APP` - Webex will continue to run but its windows will be closed by default. U
value boolean The boolean value, either `true` or `false`, for the respective `settingName` to be updated.
View JSON Schema on GitHub

JSON Schema

webex-modifycustomermsteamssettingsobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModifyCustomerMSTeamsSettingsObject",
  "title": "ModifyCustomerMSTeamsSettingsObject",
  "type": "object",
  "required": [
    "settingName",
    "value"
  ],
  "properties": {
    "settingName": {
      "type": "string",
      "enum": [
        "HIDE_WEBEX_APP",
        "PRESENCE_SYNC"
      ],
      "description": "The enum value, either `HIDE_WEBEX_APP` or `PRESENCE_SYNC`, for the respective `settingName` to be updated.\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 * `PRESENCE_SYNC` - Sync presence status between Microsoft Teams and Webex.\n"
    },
    "value": {
      "type": "boolean",
      "example": true,
      "description": "The boolean value, either `true` or `false`, for the respective `settingName` to be updated."
    }
  }
}