Webex · Schema

WorkspaceResponseModel

Workspace under an organization

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Workspace ID
name string Workspace Name
description string Workspace Description
wxccSubscriptionIds array List of Wxcc Subscription Ids
View JSON Schema on GitHub

JSON Schema

webex-workspaceresponsemodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkspaceResponseModel",
  "title": "WorkspaceResponseModel",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Workspace ID",
      "example": "99ab6909-f982-410d-9e2f-16971d18ae24"
    },
    "name": {
      "type": "string",
      "description": "Workspace Name",
      "example": "Customer-Journey-Widget"
    },
    "description": {
      "type": "string",
      "description": "Workspace Description",
      "example": "This is for sandbox1 environment"
    },
    "wxccSubscriptionIds": {
      "type": "array",
      "description": "List of Wxcc Subscription Ids",
      "example": [
        "task:new",
        "agent:login"
      ],
      "items": {
        "type": "string"
      }
    }
  },
  "description": "Workspace under an organization"
}