Webex · Schema

ContactCenterExtensionsGetObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
ccExtensions array List of user extensions.
endpoints array List of user endpoints details.
View JSON Schema on GitHub

JSON Schema

webex-contactcenterextensionsgetobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContactCenterExtensionsGetObject",
  "title": "ContactCenterExtensionsGetObject",
  "type": "object",
  "required": [
    "ccExtensions",
    "endpoints"
  ],
  "properties": {
    "ccExtensions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UserExtensions"
      },
      "description": "List of user extensions."
    },
    "endpoints": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UserEndpoints"
      },
      "description": "List of user endpoints details."
    }
  }
}