Webex · Schema

CallerIdSettingsPut

Request Payload to update 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-calleridsettingsput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallerIdSettingsPut",
  "title": "CallerIdSettingsPut",
  "type": "object",
  "description": "Request Payload to update caller ID settings.",
  "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."
    }
  }
}