Webex · Schema

UserCallPoliciesPut

User call policies settings request object for updating privacy configuration for redirected calls.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
connectedLineIdPrivacyOnRedirectedCalls string * `NO_PRIVACY` - Caller sees the final destination's identity when call is redirected. * `PRIVACY_FOR_EXTERNAL_CALLS` - Internal callers see the final destination's identity; external callers see the
View JSON Schema on GitHub

JSON Schema

webex-usercallpoliciesput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserCallPoliciesPut",
  "title": "UserCallPoliciesPut",
  "type": "object",
  "description": "User call policies settings request object for updating privacy configuration for redirected calls.",
  "properties": {
    "connectedLineIdPrivacyOnRedirectedCalls": {
      "type": "string",
      "enum": [
        "NO_PRIVACY",
        "PRIVACY_FOR_EXTERNAL_CALLS",
        "PRIVACY_FOR_ALL_CALLS"
      ],
      "description": " * `NO_PRIVACY` - Caller sees the final destination's identity when call is redirected.\n * `PRIVACY_FOR_EXTERNAL_CALLS` - Internal callers see the final destination's identity; external callers see the original recipient's identity.\n * `PRIVACY_FOR_ALL_CALLS` - All callers see the original recipient's identity when call is redirected.\n"
    }
  }
}