Revision as of 20:36, February 24, 2017 by Bfriend (talk | contribs)
Jump to: navigation, search

Configuration

Description

Configuration for the Genesys Widgets GWE plugin are very basic, allowing you to set the secured or unsecured path to the GWE server. For a detailed list of configuration options for the GWE application, please visit the main documentation for GWE: Genesys Web Engagement - Generating and Configuring the Instrumentation Script

Example

window._genesys.widgets.gwe = {

	httpEndpoint: 'http://www.website.com/gwe/',
	httpsEndpoint: 'https://www.website.com/gwe/'
};

Options

Name Type Description Default Required
httpEndpoint string URL/Path to the GWE server over standard HTTP n/a yes, if unsecured access available
httpsEndpoint string URL/Path to the GWE server over secure HTTPS n/a yes, if secured access available
trackedEvents object An object list of Widgets events for GWE to track and send to the server. The object configured here will be blended with the default list of tracked events inside of the GWE plugin. You can disable the default events by specifying each one with a false value. You can add new events as well. e.g. {'WebChat.opened': true}
{
'WebChatService.ready': true,
'WebChatService.error': true,
'WebChatService.clientConnected': true,
'WebChatService.agentConnected': true,
'WebChatService.started': true,
'WebChatService.ended': true,
'WebChatService.disconnected': true,
'WebChat.opened': true,
'WebChat.closed': true,
'SendMessageService.ready': true,
'SendMessageService.error': true,
'SendMessage.opened': true,
'SendMessage.closed': true,
'CoBrowse.started': true,
'CoBrowse.stopped': true,
'CallbackService.ready': true,
'CallbackService.scheduled': true,
'CallbackService.scheduleError': true,
'CallbackService.availabilityError': true,
'Callback.opened': true,
'Callback.closed': true,
'CallUs.opened': true,
'CallUs.closed': true,
'ChannelSelector.opened': true,
'ChannelSelector.closed': true,
'Toaster.ready': true,
'Toaster.closed': true,
'ChatDeflection.ready': true,
'Overlay.ready': true
}
No
Comments or questions about this documentation? Contact us for support!