Webex · Schema

SwitchModeRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
operatingModeId string Operating mode ID to switch to
isManualSwitchbackEnabled boolean Determines if switch back will be manual (if true) or automatic (if false or omitted from request)
View JSON Schema on GitHub

JSON Schema

webex-switchmoderequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SwitchModeRequest",
  "title": "SwitchModeRequest",
  "type": "object",
  "required": [
    "operatingModeId"
  ],
  "properties": {
    "operatingModeId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL09QRVJBVElOR19NT0RFLzAyZjZlMmI4LTFjZDktNWI3ZS1jOTVjLTczYzZkYzk1MTZjMg==",
      "description": "Operating mode ID to switch to"
    },
    "isManualSwitchbackEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Determines if switch back will be manual (if true) or automatic (if false or omitted from request)"
    }
  }
}