Webex · Schema

DirectLineCallerIdNameObject

Settings for the direct line caller ID name to be shown for this workspace.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
selection object The selection of the direct line caller ID name. Defaults to `DISPLAY_NAME`.
customName string The custom direct line caller ID name. Required if `selection` is set to `CUSTOM_NAME`.
View JSON Schema on GitHub

JSON Schema

webex-directlinecalleridnameobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DirectLineCallerIdNameObject",
  "title": "DirectLineCallerIdNameObject",
  "type": "object",
  "properties": {
    "selection": {
      "$ref": "#/components/schemas/SelectionObject",
      "description": "The selection of the direct line caller ID name. Defaults to `DISPLAY_NAME`."
    },
    "customName": {
      "type": "string",
      "example": "Hakim Smith",
      "description": "The custom direct line caller ID name. Required if `selection` is set to `CUSTOM_NAME`."
    }
  },
  "description": "Settings for the direct line caller ID name to be shown for this workspace."
}