Webex · Schema

ExtendModeRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
operatingModeId string Unique identifier for the operating mode for which the extension is being configured.
extensionTime integer Extension time in minutes (must be multiple of 30). If not sent, mode is extended with manual switch back exception
View JSON Schema on GitHub

JSON Schema

webex-extendmoderequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExtendModeRequest",
  "title": "ExtendModeRequest",
  "type": "object",
  "required": [
    "operatingModeId"
  ],
  "properties": {
    "operatingModeId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL09QRVJBVElOR19NT0RFLzAyZjZlMmI4LTFjZDktNWI3ZS1jOTVjLTczYzZkYzk1MTZMg==",
      "description": "Unique identifier for the operating mode for which the extension is being configured."
    },
    "extensionTime": {
      "type": "integer",
      "minimum": 30,
      "maximum": 720,
      "example": 30,
      "description": "Extension time in minutes (must be multiple of 30). If not sent, mode is extended with manual switch back exception"
    }
  }
}