Webex · Schema

SwitchModeMultipleFeaturesRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
featureIds array List of feature IDs to switch mode
operatingModeName string Name of the common operating mode to be set as current operating mode
View JSON Schema on GitHub

JSON Schema

webex-switchmodemultiplefeaturesrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SwitchModeMultipleFeaturesRequest",
  "title": "SwitchModeMultipleFeaturesRequest",
  "type": "object",
  "required": [
    "featureIds",
    "operatingModeName"
  ],
  "properties": {
    "featureIds": {
      "type": "array",
      "example": [
        "Y2lzY29zcGFyazovL3VzL0ZFQVRVUkUvYjQzMmI2NmQtM2VkYy00ZGNkLTg4ODctNDZlOGU2NWQwYzIw"
      ],
      "description": "List of feature IDs to switch mode",
      "items": {
        "type": "string"
      },
      "minItems": 1,
      "maxItems": 50
    },
    "operatingModeName": {
      "type": "string",
      "example": "Night",
      "description": "Name of the common operating mode to be set as current operating mode"
    }
  }
}