Webex · Schema

GetMemberResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
model string Model type of the device.
members array List of members that appear on the device.
maxLineCount number Maximum number of lines available for the device.
View JSON Schema on GitHub

JSON Schema

webex-getmemberresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetMemberResponse",
  "title": "GetMemberResponse",
  "type": "object",
  "required": [
    "model",
    "maxLineCount"
  ],
  "properties": {
    "model": {
      "type": "string",
      "example": "DMS Cisco 192",
      "description": "Model type of the device."
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MemberObject"
      },
      "description": "List of members that appear on the device."
    },
    "maxLineCount": {
      "type": "number",
      "example": 10,
      "description": "Maximum number of lines available for the device."
    }
  }
}