Webex · Schema

SingleNumberReachNumberPatchRequestObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
phoneNumber string Personal phone number used as single Number Reach.
enabled boolean A flag to enable or disable single Number Reach phone number.
name string Name of the single number reach phone number entry.
doNotForwardCallsEnabled boolean If enabled, the call forwarding settings of provided phone Number will not be applied.
answerConfirmationEnabled boolean If enabled, the call recepient will be prompted to press a key before being connected.
View JSON Schema on GitHub

JSON Schema

webex-singlenumberreachnumberpatchrequestobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SingleNumberReachNumberPatchRequestObject",
  "title": "SingleNumberReachNumberPatchRequestObject",
  "type": "object",
  "required": [
    "phoneNumber",
    "enabled",
    "name"
  ],
  "properties": {
    "phoneNumber": {
      "type": "string",
      "example": "+17011558169",
      "description": "Personal phone number used as single Number Reach."
    },
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "A flag to enable or disable single Number Reach phone number."
    },
    "name": {
      "type": "string",
      "example": "myNumber",
      "description": "Name of the single number reach phone number entry."
    },
    "doNotForwardCallsEnabled": {
      "type": "boolean",
      "description": "If enabled, the call forwarding settings of provided phone Number will not be applied."
    },
    "answerConfirmationEnabled": {
      "type": "boolean",
      "description": "If enabled, the call recepient will be prompted to press a key before being connected."
    }
  }
}