Webex · Schema

SequentialRingNumberPatch

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
phoneNumber string Phone number set as the sequential number.
answerConfirmationRequiredEnabled boolean When set to `true` the called party is required to press 1 on the keypad to receive the call.
numberOfRings number The number of rings to the specified phone number before the call advances to the subsequent number in the sequence or goes to voicemail. `numberOfRings` must be between 2 and 20, inclusive.
View JSON Schema on GitHub

JSON Schema

webex-sequentialringnumberpatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SequentialRingNumberPatch",
  "title": "SequentialRingNumberPatch",
  "type": "object",
  "properties": {
    "phoneNumber": {
      "type": "string",
      "example": "+442071838750",
      "description": "Phone number set as the sequential number."
    },
    "answerConfirmationRequiredEnabled": {
      "type": "boolean",
      "example": true,
      "description": "When set to `true` the called party is required to press 1 on the keypad to receive the call."
    },
    "numberOfRings": {
      "type": "number",
      "example": 2,
      "description": "The number of rings to the specified phone number before the call advances to the subsequent number in the sequence or goes to voicemail. `numberOfRings` must be between 2 and 20, inclusive."
    }
  }
}