Webex · Schema

VirtualExtensionPatchRequestObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
firstName string First name of the person at the virtual extension.
lastName string Last name of the person at the virtual extension.
displayName string Display name of the person at the virtual extension.
phoneNumber string Directory number of the virtual extension.
extension string Extension of the virtual extension.
View JSON Schema on GitHub

JSON Schema

webex-virtualextensionpatchrequestobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualExtensionPatchRequestObject",
  "title": "VirtualExtensionPatchRequestObject",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "example": "John",
      "description": "First name of the person at the virtual extension."
    },
    "lastName": {
      "type": "string",
      "example": "Smith",
      "description": "Last name of the person at the virtual extension."
    },
    "displayName": {
      "type": "string",
      "example": "John Smith",
      "description": "Display name of the person at the virtual extension."
    },
    "phoneNumber": {
      "type": "string",
      "example": "+17011558169",
      "description": "Directory number of the virtual extension."
    },
    "extension": {
      "type": "string",
      "example": "9133",
      "description": "Extension of the virtual extension."
    }
  }
}