Webex · Schema

RealtimeResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
webSocketUrl string Url used by the client to setup websocket.
subscriptionId object Id used by client to subscribe to interested events.
View JSON Schema on GitHub

JSON Schema

webex-realtimeresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RealtimeResponse",
  "title": "RealtimeResponse",
  "properties": {
    "webSocketUrl": {
      "description": "Url used by the client to setup websocket.",
      "example": "wss://api.wxcc-us1.cisco.com/v1/realtime/subscription/ExtensiveSupervisoryDesktop-ffffffac0f-39fa-4122-80d8-f2c2266e6391",
      "type": "string"
    },
    "subscriptionId": {
      "description": "Id used by client to subscribe to interested events.",
      "example": "ExtensiveSupervisoryDesktop-ffffffac0f-39fa-4122-80d8-f2c2266e6391",
      "format": "uuid"
    }
  },
  "required": [
    "webSocketUrl",
    "subscriptionId"
  ],
  "type": "object"
}