Webex · Schema

CallerIdSettingsGet

Response object for the caller ID settings.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
callingLineIdDeliveryBlockingEnabled boolean If `true`, the user's name and phone number are not shown to people they call.
connectedLineIdentificationRestrictionEnabled boolean If `true`, the user's name and phone number are not shown when receiving a call.
View JSON Schema on GitHub

JSON Schema

webex-calleridsettingsget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallerIdSettingsGet",
  "title": "CallerIdSettingsGet",
  "type": "object",
  "description": "Response object for the caller ID settings.",
  "example": {
    "callingLineIdDeliveryBlockingEnabled": false,
    "connectedLineIdentificationRestrictionEnabled": false
  },
  "required": [
    "callingLineIdDeliveryBlockingEnabled",
    "connectedLineIdentificationRestrictionEnabled"
  ],
  "properties": {
    "callingLineIdDeliveryBlockingEnabled": {
      "type": "boolean",
      "example": true,
      "description": "If `true`, the user's name and phone number are not shown to people they call."
    },
    "connectedLineIdentificationRestrictionEnabled": {
      "type": "boolean",
      "description": "If `true`, the user's name and phone number are not shown when receiving a call."
    }
  }
}