Webex · Schema

GetVirtualLineNumberObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
phoneNumber object Phone number that is assigned to a virtual line.
View JSON Schema on GitHub

JSON Schema

webex-getvirtuallinenumberobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetVirtualLineNumberObject",
  "title": "GetVirtualLineNumberObject",
  "type": "object",
  "properties": {
    "phoneNumber": {
      "type": "object",
      "required": [
        "primary"
      ],
      "properties": {
        "directNumber": {
          "type": "string",
          "example": "+15558675309",
          "description": "Phone number that is assigned to a virtual line."
        },
        "extension": {
          "type": "string",
          "example": "5309",
          "description": "Extension that is assigned to a virtual line."
        },
        "primary": {
          "type": "boolean",
          "example": true,
          "description": "If `true` marks the phone number as primary."
        }
      },
      "description": "Phone number that is assigned to a virtual line."
    }
  }
}