Webex · Schema
availableCallerIds
Details of an available caller ID.
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| type | object | |
| id | string | Unique identifier of the available caller ID. |
| name | string | Name of the available caller ID. |
| directNumber | string | Direct number of the available caller ID. |
| extension | string | Extension of the available caller ID. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/availableCallerIds",
"title": "availableCallerIds",
"type": "object",
"description": "Details of an available caller ID.",
"required": [
"type",
"name"
],
"properties": {
"type": {
"$ref": "#/components/schemas/CallerIdType"
},
"id": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL0hVTlRfR1JPVVAvNmU1NTVjZDAtNjM0MS00MmI4LWEyMWMtZTc1ZjIxNDQ4Mjc5",
"description": "Unique identifier of the available caller ID."
},
"name": {
"type": "string",
"example": "Hunt Group",
"description": "Name of the available caller ID."
},
"directNumber": {
"type": "string",
"example": "+19075552860",
"description": "Direct number of the available caller ID."
},
"extension": {
"type": "string",
"example": "10079",
"description": "Extension of the available caller ID."
}
}
}