Webex · Schema

GetVirtualLineDevicesObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
devices array List of devices assigned to a virtual line.
availableEndpointType object Indicates to which line a device can be assigned.
maxDeviceCount number Maximum number of devices a virtual line can be assigned to.
View JSON Schema on GitHub

JSON Schema

webex-getvirtuallinedevicesobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetVirtualLineDevicesObject",
  "title": "GetVirtualLineDevicesObject",
  "type": "object",
  "required": [
    "availableEndpointType",
    "maxDeviceCount"
  ],
  "properties": {
    "devices": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DeviceObject"
      },
      "description": "List of devices assigned to a virtual line."
    },
    "availableEndpointType": {
      "$ref": "#/components/schemas/LineType",
      "description": "Indicates to which line a device can be assigned."
    },
    "maxDeviceCount": {
      "type": "number",
      "example": 35,
      "description": "Maximum number of devices a virtual line can be assigned to."
    }
  }
}