Webex · Schema
PostVirtualExtensionObject
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. |
| locationId | string | ID of the location to which the virtual extension is assigned. The location ID is a unique identifier for the location in Webex Calling. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PostVirtualExtensionObject",
"title": "PostVirtualExtensionObject",
"type": "object",
"required": [
"displayName",
"phoneNumber",
"extension"
],
"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."
},
"locationId": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL0xPQ0FUSU9OL2E4Mjg5NzIyLTFiODAtNDFiNy05Njc4LTBlNzdhZThjMTA5OA",
"description": "ID of the location to which the virtual extension is assigned. The location ID is a unique identifier for the location in Webex Calling."
}
}
}