Webex · Schema
SimultaneousRingPut
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | Simultaneous Ring is enabled or not. |
| doNotRingIfOnCallEnabled | boolean | When set to `true`, the configured phone numbers won't ring when you are on a call. |
| phoneNumbers | array | Enter up to 10 phone numbers to ring simultaneously when you receive an incoming call. |
| criteriasEnabled | boolean | Controls whether the criteria for simultaneous ring are enabled. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SimultaneousRingPut",
"title": "SimultaneousRingPut",
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"example": true,
"description": "Simultaneous Ring is enabled or not."
},
"doNotRingIfOnCallEnabled": {
"type": "boolean",
"example": true,
"description": "When set to `true`, the configured phone numbers won't ring when you are on a call."
},
"phoneNumbers": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SimultaneousRingNumberPut"
},
"description": "Enter up to 10 phone numbers to ring simultaneously when you receive an incoming call.",
"example": [
{
"phoneNumber": "+19075552859",
"answerConfirmationEnabled": true
}
]
},
"criteriasEnabled": {
"type": "boolean",
"example": true,
"description": "Controls whether the criteria for simultaneous ring are enabled."
}
}
}