Webex · Schema
PostVirtualExtensionRangeObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the virtual extension range. This is a unique name for the virtual extension range. |
| prefix | string | Prefix used for a virtual extension range. Prefix works in Standard and Enhanced modes. In Standard mode, it must be E.164 and unique. In Enhanced mode, it can be E.164 or non-E.164. |
| patterns | array | List of virtual extension patterns. You can add up to 100 patterns at a time. Extension patterns can include one or more right-justified wildcards “X” matching any digit. |
| locationId | string | ID of the location to which the virtual extension range is assigned. The location ID is a unique identifier for the location in Webex Calling. This is set only when location level virtual extension ra |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PostVirtualExtensionRangeObject",
"title": "PostVirtualExtensionRangeObject",
"type": "object",
"required": [
"name",
"prefix"
],
"properties": {
"name": {
"type": "string",
"example": "SalesVirtualExtensionRange",
"description": "Name of the virtual extension range. This is a unique name for the virtual extension range."
},
"prefix": {
"type": "string",
"example": "+1234",
"description": "Prefix used for a virtual extension range. Prefix works in Standard and Enhanced modes. In Standard mode, it must be E.164 and unique. In Enhanced mode, it can be E.164 or non-E.164."
},
"patterns": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of virtual extension patterns. You can add up to 100 patterns at a time. Extension patterns can include one or more right-justified wildcards \u201cX\u201d matching any digit."
},
"locationId": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL0xPQ0FUSU9OL2E4Mjg5NzIyLTFiODAtNDFiNy05Njc4LTBlNzdhZThjMTA5OA",
"description": "ID of the location to which the virtual extension range is assigned. The location ID is a unique identifier for the location in Webex Calling. This is set only when location level virtual extension range is added."
}
}
}