Webex · Schema

GetScreenPopConfigurationObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Enable/disable screen pop.
screenPopUrl string The screen pop URL that integrates Webex calls with other business apps like CRM, ticketing tools, and order entry systems.
desktopLabel string A label for the screen pop configuration.
queryParams object The additional user-defined key-value pairs that must be sent to the agent.
View JSON Schema on GitHub

JSON Schema

webex-getscreenpopconfigurationobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetScreenPopConfigurationObject",
  "title": "GetScreenPopConfigurationObject",
  "type": "object",
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "Enable/disable screen pop."
    },
    "screenPopUrl": {
      "type": "string",
      "example": "https://www.salesforce.com/page",
      "description": "The screen pop URL that integrates Webex calls with other business apps like CRM, ticketing tools, and order entry systems."
    },
    "desktopLabel": {
      "type": "string",
      "example": "CRM Integration with Webex CallQueue screen pop",
      "description": "A label for the screen pop configuration."
    },
    "queryParams": {
      "$ref": "#/components/schemas/QueryParamsObject",
      "description": "The additional user-defined key-value pairs that must be sent to the agent."
    }
  }
}