Webex · Schema

SimultaneousRingNumberPut

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
phoneNumber string Phone number set for simultaneous ring.
answerConfirmationEnabled boolean When set to `true`, the called party is required to press 1 on the keypad to confirm answer for the call.
View JSON Schema on GitHub

JSON Schema

webex-simultaneousringnumberput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SimultaneousRingNumberPut",
  "title": "SimultaneousRingNumberPut",
  "type": "object",
  "properties": {
    "phoneNumber": {
      "type": "string",
      "example": "+19075552859",
      "description": "Phone number set for simultaneous ring."
    },
    "answerConfirmationEnabled": {
      "type": "boolean",
      "example": true,
      "description": "When set to `true`, the called party is required to press 1 on the keypad to confirm answer for the call."
    }
  }
}