Webex · Schema
SingleNumberReachNumber
Represents a phone number configured for Single Number Reach.
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| phoneNumber | string | Phone number. |
| name | string | Name associated with the phone number. |
| enabled | boolean | If `true`, the phone number is enabled. |
| doNotForwardCallsEnabled | boolean | If `true`, calls are not forwarded. |
| answerConfirmationEnabled | boolean | If `true`, answer confirmation is enabled. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SingleNumberReachNumber",
"title": "SingleNumberReachNumber",
"type": "object",
"description": "Represents a phone number configured for Single Number Reach.",
"example": {
"phoneNumber": "+19075552859",
"name": "John",
"enabled": true,
"doNotForwardCallsEnabled": true,
"answerConfirmationEnabled": false
},
"required": [
"phoneNumber",
"name",
"enabled",
"doNotForwardCallsEnabled",
"answerConfirmationEnabled"
],
"properties": {
"phoneNumber": {
"type": "string",
"example": "+19075552859",
"description": "Phone number."
},
"name": {
"type": "string",
"example": "John",
"description": "Name associated with the phone number."
},
"enabled": {
"type": "boolean",
"example": true,
"description": "If `true`, the phone number is enabled."
},
"doNotForwardCallsEnabled": {
"type": "boolean",
"example": true,
"description": "If `true`, calls are not forwarded."
},
"answerConfirmationEnabled": {
"type": "boolean",
"description": "If `true`, answer confirmation is enabled."
}
}
}