Cisco Webex · Schema

UpdateWorkspaceRequest

CollaborationCommunicationsMeetingsMessagingTeamsVideo Conferencing

Properties

Name Type Description
displayName string Updated display name.
workspaceLocationId string Updated location ID.
floorId string Updated floor ID.
capacity integer Updated capacity.
type string Updated workspace type.
calling object Updated calling configuration.
calendar object Updated calendar configuration.
notes string Updated notes.
View JSON Schema on GitHub

JSON Schema

cisco-webex-updateworkspacerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateWorkspaceRequest",
  "title": "UpdateWorkspaceRequest",
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string",
      "description": "Updated display name."
    },
    "workspaceLocationId": {
      "type": "string",
      "description": "Updated location ID."
    },
    "floorId": {
      "type": "string",
      "description": "Updated floor ID."
    },
    "capacity": {
      "type": "integer",
      "description": "Updated capacity."
    },
    "type": {
      "type": "string",
      "description": "Updated workspace type.",
      "enum": [
        "notSet",
        "focus",
        "huddle",
        "meetingRoom",
        "open",
        "desk",
        "other"
      ]
    },
    "calling": {
      "type": "object",
      "description": "Updated calling configuration.",
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "freeCalling",
            "hybridCalling",
            "webexCalling",
            "webexEdgeForDevices",
            "none"
          ]
        }
      }
    },
    "calendar": {
      "type": "object",
      "description": "Updated calendar configuration.",
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "none",
            "google",
            "microsoft"
          ]
        },
        "emailAddress": {
          "type": "string",
          "format": "email"
        }
      }
    },
    "notes": {
      "type": "string",
      "description": "Updated notes."
    }
  }
}