Webex · Schema

SimultaneousRingNumberGet

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.
View JSON Schema on GitHub

JSON Schema

webex-simultaneousringnumberget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SimultaneousRingNumberGet",
  "title": "SimultaneousRingNumberGet",
  "type": "object",
  "required": [
    "phoneNumber",
    "answerConfirmationRequiredEnabled"
  ],
  "properties": {
    "phoneNumber": {
      "type": "string",
      "example": "+19075552859",
      "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."
    }
  }
}