Webex · Schema

HandsetsResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier of the DECT handset.
displayName string Display name of the DECT handset.
accessCode string Access code for the DECT handset.
lines array Details of the handset member lines registered with the base station. The maximum number of lines supported is 2.
View JSON Schema on GitHub

JSON Schema

webex-handsetsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HandsetsResponse",
  "title": "HandsetsResponse",
  "type": "object",
  "required": [
    "id",
    "displayName",
    "accessCode",
    "lines"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1NDSU1fR1JPVVAvZjA2ZWRiOGMtMjMxNC00ZTcxLWIzNzgtZTdiMmQwNjk3OTliOjk2YWJjMmFhLTNkY2MtMTFlNS1hMTUyLWZlMzQ4MTljZGM5RG",
      "description": "Unique identifier of the DECT handset."
    },
    "displayName": {
      "type": "string",
      "example": "Inventory-handset-1",
      "description": "Display name of the DECT handset."
    },
    "accessCode": {
      "type": "string",
      "example": "1558",
      "description": "Access code for the DECT handset."
    },
    "lines": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DECTHandsetLineResponse"
      },
      "description": "Details of the handset member lines registered with the base station. The maximum number of lines supported is 2."
    }
  }
}