Integrating Zendesk into Cisco Finesse

Size: px
Start display at page:

Download "Integrating Zendesk into Cisco Finesse"

Transcription

1 White Paper Integrating Zendesk into Cisco Finesse White Paper 2016 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 1 of 10

2 Providing an integrated customer service experience combining the Cisco Finesse agent desktop with the Zendesk service solution arms your agents with a powerful omnichannel support and ticket management tool to best service customer engagements. This paper will: Provide a general overview of Zendesk and Cisco Finesse Define three Zendesk integration alternatives within Cisco Finesse Provide links to the Cisco Developer website that hosts sample gadget code Provide links to the Zendesk site that hosts the Zendesk API s 2016 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 2 of 10

3 Contents About Zendesk... 4 About Cisco Finesse Desktop... 4 Benefits of Integrating the Zendesk Support Tool within the Finesse Desktop... 4 Prerequisites... 4 Three Zendesk Integration Alternatives within Cisco Finesse Embed Zendesk Interface into Finesse as a Simple Gadget Use the Zendesk Core API s to Allow for Ticket Creation within Finesse Populate Call Variables and Automatically Insert into Them as Necessary into Zendesk Requests... 8 Closing Thoughts... 9 References Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 3 of 10

4 About Zendesk Zendesk, Inc. is a software development company based in San Francisco, California. The company provides a cloud-based customer service platform, also called Zendesk, that includes ticketing, self-service options, and customer support features. With more than 64,000 paid customer accounts, Zendesk s products are used by organizations in 150 countries and territories to provide support in more than 40 languages. Founded in 2007 and headquartered in San Francisco, Zendesk has operations in the United States, Europe, Asia, Australia and South America. About Cisco Finesse Desktop The Cisco Finesse Desktop is the agent-facing front end to Cisco s Customer Care solutions. Through their desktop, their phone or both, customer care representatives control their work status which is used by the router, reporting engine and supervisors to manage contact requests and real-time performance indicators. Benefits of Integrating the Zendesk Support Tool within the Finesse Desktop Finesse is extensible, supporting plug-ins called gadgets to embed other applications in a unified desktop. Agents can switch between multiple business applications while centrally managing their work status for routing and reporting. Creating an integrated Finesse and Zendesk solution: Provides centralized state management for Cisco s customer care solutions, Zendesk and potentially other third-party or custom applications. Takes advantage of Cisco s scripted treatment and precision routing engines. Uses predictive analytics to manage average wait time and meet service level agreements with adaptive and precision routing scripts. Eliminates the need to bounce between browser tabs to access both Zendesk and the Finesse agent desktop. Screens will pop into the Finesse desktop as the call is delivered, providing the relevant information needed to further enable excellent customer service. Provides for a single cockpit view for the agent to receive the contact, view their customer details, and interact with Zendesk case tool. Reduces call resolution time and allows for increased calls per hour per agent. Prerequisites This documents assumes that the reader understands the basics of: Zendesk support tool Cisco Contact Center Cisco Finesse HTML Java (sample code provided is in Java, but could be implemented in any language in which the reader is comfortable.) 2016 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 4 of 10

5 Be sure you have access to the Zendesk cloud and that you have a user id. (Any customer who has purchased Zendesk will have a Zendesk account. You will have yourcompany.zendesk.com as a login for example.) Three Zendesk Integration Alternatives within Cisco Finesse 1. Embed the Zendesk interface into Finesse as a simple gadget 2. Use the Zendesk core API s to allow for ticket creation within Finesse 3. As a call comes in, populate call variables and automatically insert them as necessary into Zendesk requests to pop the correct customer data onto the agent desktop 1. Embed Zendesk Interface into Finesse as a Simple Gadget This first integration option allows you to integrate the full Zendesk interface into Finesse as a simple gadget. There are lots of samples in that show how a web based application (such as the Zendesk interface) can be presented inside an iframe within Finesse. The code provided within the sample gadgets there is pretty straightforward, and there are examples within those samples that will show you how to properly implement them. *** You can use this reference code linked here as Embedded WebApp Sample Gadget to embed your Zendesk portal into Finesse. *** This basically just shows you how to load the Zendesk user interface into Finesse. The really interesting part comes in step 3 as we use the Zendesk API s, call variables and Finesse s ability to invoke API s on an as needed basis, such as when a call comes in for the agent. When an agent is not serving the customer, the agent could access the tickets that they are assigned from within Cisco Finesse. This provides the agent a single user interface to access various applications Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 5 of 10

6 2. Use the Zendesk Core API s to Allow for Ticket Creation within Finesse Zendesk provides and updates a list of core API s that will allow 3 rd party vendors and applications (such as Cisco Finesse) to interface into their cloud-based case creation tool. You can invoke any of the API s listed in the Zendesk core API document. You must be able to send requests to these API s by referencing the sample java code. This second integration option shows how you can initiate a new ticket from within any other Finesse gadget. For ticket creation, you will use the Zendesk gadget to send an HTTP request to 1 }.zendesk.com/api/v2/tickets.json API to create a new ticket. Note: A subdomain is created by Zendesk when you purchase Zendesk services. For example, if company abc signs up with Zendesk, they will be given a subdomain like to access their data. The information needed for ticket creation (eg. name, of the customer, title of the ticket, description etc.) can be provided by call variables in Finesse, which will be passed to the Zendesk ticket creation API within the request. Ultimately, an API request is sent to api/v2/tickets.json in the Zendesk cloud, thereby creating a ticket with the information provided by the agent during the call with a customer. But How Do We Build the API Request? Here we have a sample gadget showing a button to create a new Zendesk ticket. The gadget is defined within the Finesse default layout or within a Team layout if this is specific to certain Teams Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 6 of 10

7 Then the XML file references an HTML file. The example HTML code below shows how the request is sent to the Zendesk gadget code when the button is clicked. So when we click on the button, it sends a request to the Zendesk gadget code. It s saying that the action is to create, and you can give any number of parameters (via call variables) that you want to include, such as: name, , case title, etc. Creating a ticket is as simple as creating a web request to the cloud-based Zendesk site with a specific json. By leveraging the sample code snippet below, you can add a button or link in your Zendesk gadget to create a case. Upon clicking this button or link, the java script (above) sends a HTTP request to the Zendesk gadget code (code snippet shown below). public void createticket() { //This function needs information of your Zendesk host (subdomain.zendesk.com), user id and password. String surl = " + m_szendeskhost + "/api/v2/tickets.json"; URL url = new URL(sUrl); HttpURLConnection connection = (HttpURLConnection) url.openconnection(); CertMgr.relaxHostChecking(connection); connection.setrequestmethod("post"); connection.setdooutput(true); connection.setdoinput(true); connection.setrequestproperty("content-type", "application/json"); 2016 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 7 of 10

8 } connection.setrequestproperty("charset", "utf-8"); connection.setrequestproperty("accept", "application/json"); String sauthstr = m_suserid + ":" + m_spasswd; sauthstr = Base64.encodeBase64String(sAuthStr.getBytes()); connection.setrequestproperty("authorization", "Basic " + sauthstr); String requestbody = getticketjson(); connection.setrequestproperty("content-length", String.valueOf(requestBody)); DataOutputStream wr = new DataOutputStream(connection.getOutputStream ()); wr.write(requestbody.getbytes()); wr.flush(); wr.close(); connection.connect(); int respcode = connection.getresponsecode(); You must first load the Zendesk gadget onto a webserver, leveraging the sample code snippet below, which will ultimately place a request to the create-ticket API at Zendesk. Note: To pass call variables to the Zendesk gadget, your request should contain call variable mappings similar to the example below: The variables can perhaps come from IVR interactions where the user puts in his/her account number, and from that account number you could access a database to extract the users name, their address etc. as call variables. The agent can also pass additional information, such as ticket description, where the information is directly fed by the agent into the gadget (via a text box, pull down selection, etc.). At this moment, we invoke the Zendesk gadget with the variables automatically inserted and we get a response. 3. Populate Call Variables and Automatically Insert into Them as Necessary into Zendesk Requests This third integration option will show what to configure to populate the Zendesk interface within Finesse with customer case information retrieved from the Zendesk cloud, if this customer has already been defined within the system and has open cases. When a call comes into the contact center, we will use information provided during the call (such as an ANI number, a customer account number, or other) to do a database lookup and then populate call variables based on the information provided and the database lookup. We ll then pass the variable information along to the Zendesk gadget. Then the Zendesk gadget sends the request to the Zendesk Voice Integration API which loads the appropriate information to the user Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 8 of 10

9 This whitepaper shows two usages of voice integration API s: Open a user's profile in an agent's browser: (/api/v2/channels/voice/agents/{agent_id}/users/{user_id}/display.json) Open a ticket in an agent's browser: (/api/v2/channels/voice/agents/{agent_id}/tickets/{ticket_id}/display.json) In this case, when a call comes in the Cisco Finesse gadget, we will use the Zendesk voice integration API to open the customer information and ticket information. This ensures that the agent has all the information about the customer and also gives insight into the context of what case the customer is calling about. Similar to how we had code for create ticket, refer to the sample code and follow the viewticket and viewcustomer functions to get a detailed understanding of how to use the voice integration API. So the flow is similar to what we saw with the ticket create API: Retrieve the call variables Pass them to your Zendesk gadget The Zendesk gadget forms the json file (simple structure string variable) The Zendesk gadget then sends that request along to Zendesk to the appropriate API for a response Note: Be sure you have access to the Zendesk cloud and that you have a user id. Any customer who has purchased Zendesk will have a Zendesk account. You will have yourcompany.zendesk.com as a login for example You could integrate your corporate login to the Zendesk login. You have to create your repository of agents, with userid s for each agent. Zendesk exposes API s to enable single-sign on. You can leverage the capabilities of single-sign on without having the user to have to worry about logging into two places. Integration of single sign-on is outside the scope of this document. Closing Thoughts As you can see, integrating the Zendesk interface within Finesse and attaching call variables to the content posts and request is as easy as 1, 2, 3. The net result will be a more fully integrated omni-channel customer service, ticket creation and ticket retrieval experience for your customer service representatives, helping them service your customers more quickly and efficiently. References Sample code Zendesk core API Zendesk voice integration API Cisco Finesse Finesse sample gadgets 2016 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 9 of 10

10 Printed in USA C / Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 10 of 10

For Live Data reports, you will only have the Html permalink. Html permalink for Live Data reports always require authentication.

For Live Data reports, you will only have the Html permalink. Html permalink for Live Data reports always require authentication. Overview, page 1 Create a Permalink for a Dashboard, page 2 Create Permalink for a, page 2 Create Permalink for Finesse Gadget Equivalent Live Data, page 3 for Supervisor Live Data s, page 4 Overview in

More information

Manage Workflows. Workflows and Workflow Actions

Manage Workflows. Workflows and Workflow Actions On the Workflows tab of the Cisco Finesse administration console, you can create and manage workflows and workflow actions. Workflows and Workflow Actions, page 1 Add Browser Pop Workflow Action, page

More information

Sophos Mobile Control Network Access Control interface guide

Sophos Mobile Control Network Access Control interface guide Sophos Mobile Control Network Access Control interface guide Product version: 5.1 Document date: July 2015 Contents 1 About Sophos Mobile Control... 3 2 About Network Access Control integration... 4 3

More information

Cisco Finesse Desktop Interface

Cisco Finesse Desktop Interface , page 1 When you sign in to Cisco Finesse, the appearance of the desktop depends on whether your role is that of an agent or a supervisor. Supervisors have additional features that appear on their desktops.

More information

ZenDesk Integration. Content. Learn more about maximizing your ShoreTel phone system

ZenDesk Integration. Content. Learn more about maximizing your ShoreTel phone system ZenDesk Integration Updated 3/2017 Content About PCS... 2 Click to Dial... 3 Interactive Voice Response - IVR... 4 Screen Pop... 5 Web Services... 6 Learn more about maximizing your ShoreTel phone system

More information

Manage Call Variables Layouts

Manage Call Variables Layouts Call Variables Layouts, page 1 Call Variables, page 2 Configure Call Variables Layouts, page 2 Add ECC Variables to Call Variables Layout, page 4 Assign Call Variables Layouts, page 4 Manipulate Call Variables

More information

Manage Finesse IP Phone Agent

Manage Finesse IP Phone Agent Finesse IP Phone Agent, page 1 One Button Sign In, page 2 Finesse IP Phone Service Subscription Options, page 3 Set Up Application User, Web Access, and HTTPS Server Parameters, page 4 Configure Finesse

More information

Unified CCX Administration Web Interface

Unified CCX Administration Web Interface The Unified CCX provides a multimedia (voice, data, and web) IP-enabled customer-care application environment, using VoIP technology that allows your Cisco Unified Communications network to share resources

More information

Cisco Finesse desktop interface

Cisco Finesse desktop interface When you sign in to Cisco Finesse, the appearance of the desktop depends on whether your role is that of an agent or a supervisor. Supervisors have additional features that appear on their desktops. This

More information

CHAPTER 1 PREFACE... 1

CHAPTER 1 PREFACE... 1 v CHAPTER 1 PREFACE... 1 Why I wrote this book... 1 Who this book is for?... 1 A brief history of UCCX... 2 What is UCCX... 3 Assumptions... 3 Reference Lab... 3 CHAPTER 2 INSTALLATION... 5 Preparation...

More information

Manage Team Resources

Manage Team Resources You can assign phone books, reason codes, wrap-up reasons, custom desktop layouts, and workflows to teams on the Team Resources tab of the administration console. Team Resources, page 1 Assign Phone Books

More information

EFM and DGLux5 Installation Guide

EFM and DGLux5 Installation Guide EFM and DGLux5 Installation Guide Kinetic - Edge & Fog Processing Module (EFM) 1.2.0 Revised: November 30, 2017 Contents Introduction... 2 EFM and DGLux5 licensing... 2 Installation of the EFM components...

More information

Office Adapters for Quark Publishing Platform

Office Adapters for Quark Publishing Platform Office Adapters for Quark Publishing Platform Contents Getting started... 1 About Quark Publishing Platform...1 System requirements... 3 Installing the Office Adapters for Quark Publishing Platform...

More information

Cisco Finesse Desktop Interface

Cisco Finesse Desktop Interface When you sign in to Cisco Finesse, the appearance of the desktop depends on whether your role is that of an agent or a supervisor. Supervisors have additional features that appear on their desktops. This

More information

Excel4apps Wands 5 Architecture Excel4apps Inc.

Excel4apps Wands 5 Architecture Excel4apps Inc. Excel4apps Wands 5 Architecture 2014 Excel4apps Inc. Table of Contents 1 Introduction... 3 2 Overview... 3 3 Client... 3 4 Server... 3 4.1 Java Servlet... 4 4.2 OAF Page... 4 4.3 Menu and Function... 4

More information

The system has several front-end content discovery options. Here are examples of their interfaces (see more on our site at

The system has several front-end content discovery options. Here are examples of their interfaces (see more on our site at November, 2014 1 TrenDemon is a content marketing platform which helps boost conversions from your existing traffic and content using personalized recommendations and call to actions. The system has several

More information

BRIGHTGAUGE/CONNECTWISE INTEGRATION STEPS

BRIGHTGAUGE/CONNECTWISE INTEGRATION STEPS BRIGHTGAUGE/CONNECTWISE INTEGRATION STEPS Introduction & Getting Started! Welcome to BrightGauge, the best way to produce amazing Customer Facing reports with data from ConnectWise and your RMM. Getting

More information

FAQs Facebook Integration with SAP Hybris Cloud for Customer SAP Hybris Cloud for Customer PUBLIC

FAQs Facebook Integration with SAP Hybris Cloud for Customer SAP Hybris Cloud for Customer PUBLIC FAQs Facebook Integration with SAP Hybris Cloud for Customer SAP Hybris Cloud for Customer PUBLIC TABLE OF CONTENTS FAQS FACEBOOK INTEGRATION WITH SAP HYBRIS CLOUD FOR CUSTOMER...3 1. You are not able

More information

SpiraTeam Help Desk Integration Guide Inflectra Corporation

SpiraTeam Help Desk Integration Guide Inflectra Corporation / SpiraTeam Help Desk Integration Guide Inflectra Corporation Date: July 23rd, 2018 Contents Introduction... 1 1. KronoDesk... 2 2. Zendesk... 7 Introduction SpiraTeam is an integrated Application Lifecycle

More information

Cisco Finesse Desktop Interface

Cisco Finesse Desktop Interface When you sign in to Cisco Finesse, the appearance of the desktop depends on whether your role is that of an agent or a supervisor. Supervisors have additional features that appear on their desktops. This

More information

AIRCALL GUIDE FOR ADMINS

AIRCALL GUIDE FOR ADMINS AIRCALL GUIDE FOR ADMINS 1 TABLE OF CONTENTS Welcome to Aircall! 1. Configure your Account Configure your numbers Manage your agents Explore Analytics Choose your plan & pricing 2. Configure your App Make

More information

Cisco Prime Network Registrar IPAM 8.3 Quick Start Guide

Cisco Prime Network Registrar IPAM 8.3 Quick Start Guide Cisco Prime Network Registrar IPAM 8.3 Quick Start Guide Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS

More information

Enterprise Chat and Upgrade Guide, Release 11.6(1)

Enterprise Chat and  Upgrade Guide, Release 11.6(1) Enterprise Chat and Email Upgrade Guide, Release 11.6(1) For Unified Contact Center Enterprise August 2017 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

Jaspersoft APIs. Integrating BI with your Applications. Community and Professional Editions

Jaspersoft APIs. Integrating BI with your Applications. Community and Professional Editions Jaspersoft APIs Integrating BI with your Applications Community and Professional Editions Jaspersoft Headquarters: 539 Bryant Street, Suite 100 San Francisco, CA 94107, USA www.jaspersoft.com Email: sales@jaspersoft.com

More information

AMP for Endpoints Entitlement Guide

AMP for Endpoints Entitlement Guide Table of Contents Entitlement for your Product... 2 Licensing Portal... 2 Language Support... 2 Public Cloud Entitlement Emails- No Existing Cloud account... 3 Existing Cloud accounts - POV conversion

More information

SHORETEL INSTALLATION GUIDE

SHORETEL INSTALLATION GUIDE SHORETEL INSTALLATION GUIDE Updated November 14, 2017 Table Of Contents Install Java...1 Install Chronicall...2 Complete Initial Configuration...10 Configure Call Recording within ShoreTel Configure a

More information

TeamViewer User Guide for Microsoft Dynamics CRM. Document Information Version: 0.5 Version Release Date : 20 th Feb 2018

TeamViewer User Guide for Microsoft Dynamics CRM. Document Information Version: 0.5 Version Release Date : 20 th Feb 2018 TeamViewer User Guide for Microsoft Dynamics CRM Document Information Version: 0.5 Version Release Date : 20 th Feb 2018 1 P a g e Table of Contents TeamViewer User Guide for Microsoft Dynamics CRM 1 Audience

More information

Develop Mobile Front Ends Using Mobile Application Framework A - 2

Develop Mobile Front Ends Using Mobile Application Framework A - 2 Develop Mobile Front Ends Using Mobile Application Framework A - 2 Develop Mobile Front Ends Using Mobile Application Framework A - 3 Develop Mobile Front Ends Using Mobile Application Framework A - 4

More information

PANGEA FAMILY RELEASE SCHEDULE... 1 TABLE OF CONTENTS... 1 NEW FEATURES RESPONSIVE WEB SITES... 2 NEW FEATURES MAM & MULTIMEDIA PROJECTS...

PANGEA FAMILY RELEASE SCHEDULE... 1 TABLE OF CONTENTS... 1 NEW FEATURES RESPONSIVE WEB SITES... 2 NEW FEATURES MAM & MULTIMEDIA PROJECTS... Pangea Family Release Schedule Radio Free Europe / Radio Liberty Inc.: Tue, 26-Apr, 2016 07:00 am CEST 01:00 am EDT Voice of America: Wed, 27-Apr, 2016 10:00 am CEST 04:00 am EDT Middle East Broadcasting

More information

Manage Reasons. Not Ready Reason Codes

Manage Reasons. Not Ready Reason Codes The Reasons tab on the Cisco Finesse administration console allows you to view, add, edit, and delete Not Ready reason codes, Sign Out reason codes, and Wrap-Up reasons. The reason codes you configure

More information

Cisco Unified Communications Self Care Portal User Guide, Release 11.5(1)

Cisco Unified Communications Self Care Portal User Guide, Release 11.5(1) Cisco Unified Communications Self Care Portal User Guide, Release 11.5(1) Unified Communications Self Care Portal 2 Unified Communications Self Care Settings 2 Phones 4 Additional Settings 12 Revised:

More information

Task Routing. Task Routing

Task Routing. Task Routing , page 1 API Request Flows, page 10 Failover and Failure Recovery, page 18 Setup, page 21 Sample Code for, page 30 Reporting, page 31 describes the system's ability to route requests from different media

More information

Quick Start Guide for Cisco Prime Network Registrar IPAM 8.0

Quick Start Guide for Cisco Prime Network Registrar IPAM 8.0 Quick Start Guide for Cisco Prime Network Registrar IPAM 8.0 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS

More information

Cisco Finesse Release 11.0(1) ES07

Cisco Finesse Release 11.0(1) ES07 Cisco Finesse Release 11.0(1) ES07 Contents Version 11.0(1) ES07...3 Valid Upgrade Paths...3 Installing Finesse Release 11.0(1) ES07...3 Installation...3 Rollback...5 Resolved Caveats/Features in this

More information

SpiraTeam Help Desk Integration Guide Inflectra Corporation

SpiraTeam Help Desk Integration Guide Inflectra Corporation / SpiraTeam Help Desk Integration Guide Inflectra Corporation Date: June 12, 2017 Contents Introduction... 1 1. Zendesk... 2 Introduction SpiraTeam is an integrated Application Lifecycle Management (ALM)

More information

TIBCO Slingshot User Guide. Software Release August 2015

TIBCO Slingshot User Guide. Software Release August 2015 TIBCO Slingshot User Guide Software Release 1.9.4 August 2015 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE IS SOLELY

More information

Configure Cisco Finesse

Configure Cisco Finesse Cisco Finesse Configuration, page 1 Configure Contact Center Agents and Routing for Live Data Reports, page 1 Disable Agent Queue Statistics Gadget in Default Desktop Layout, page 2 Live Data Reports,

More information

SAML SSO Okta Identity Provider 2

SAML SSO Okta Identity Provider 2 SAML SSO Okta Identity Provider SAML SSO Okta Identity Provider 2 Introduction 2 Configure Okta as Identity Provider 2 Enable SAML SSO on Unified Communications Applications 4 Test SSO on Okta 4 Revised:

More information

Micro Focus Desktop Containers

Micro Focus Desktop Containers White Paper Security Micro Focus Desktop Containers Whether it s extending the life of your legacy applications, making applications more accessible, or simplifying your application deployment and management,

More information

Oracle Warehouse Builder 10g Runtime Environment, an Update. An Oracle White Paper February 2004

Oracle Warehouse Builder 10g Runtime Environment, an Update. An Oracle White Paper February 2004 Oracle Warehouse Builder 10g Runtime Environment, an Update An Oracle White Paper February 2004 Runtime Environment, an Update Executive Overview... 3 Introduction... 3 Runtime in warehouse builder 9.0.3...

More information

Parrot Predictive Dialer Cloud Call Center

Parrot Predictive Dialer Cloud Call Center Parrot Predictive Dialer Cloud Call Center World Class Call Center Software Telephone: 972-713-6622 ~ Web: www.evs7.com Take Control - Maximize Talk Time Reach More Contacts Increase Sales & Service Cloud-based

More information

TIBCO MFT Internet Server Desktop Client. Software Release September 2014

TIBCO MFT Internet Server Desktop Client. Software Release September 2014 TIBCO MFT Internet Server Desktop Client Software Release 7.2.2 September 2014 Desktop Client Configuration Desktop Client User Guide Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO

More information

User Guide. 3CX CRM Plug-in for Zendesk. Version

User Guide. 3CX CRM Plug-in for Zendesk. Version User Guide 3CX CRM Plug-in for Zendesk Version 15.5.89 "Copyright VoIPTools, LLC 2011-2018" Information in this document is subject to change without notice. No part of this document may be reproduced

More information

ServiceNow Okta Identity Cloud for ServiceNow application Deployment Guide Okta Inc.

ServiceNow Okta Identity Cloud for ServiceNow application Deployment Guide Okta Inc. ServiceNow Okta Identity Cloud for ServiceNow application Deployment Guide Okta Identity Cloud for ServiceNow Configuring the Okta Application from the ServiceNow App Store Okta Inc. 301 Brannan Street

More information

Release Notes for Cisco Insight v2, Release 2.0.0

Release Notes for Cisco Insight v2, Release 2.0.0 December 22, 2010 This document describes the operating environment and the defects and caveats that were identified as part of internal testing and during the interaction with live trials. It assumes

More information

Installation Guide. 3CX CRM Plugin for ConnectWise. Single Tenant Version

Installation Guide. 3CX CRM Plugin for ConnectWise. Single Tenant Version Installation Guide 3CX CRM Plugin for ConnectWise Single Tenant Version "Copyright VoIPTools, LLC 2011-2016" Information in this document is subject to change without notice. No part of this document may

More information

Chatter Answers Implementation Guide

Chatter Answers Implementation Guide Chatter Answers Implementation Guide Salesforce, Spring 16 @salesforcedocs Last updated: April 27, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Remote Monitoring on Cisco Unified Contact Center Express 8.x

Remote Monitoring on Cisco Unified Contact Center Express 8.x Remote Monitoring on Cisco Unified Contact Center Express 8.x Document ID: 112242 Contents Introduction Prerequisites Requirements Components Used Conventions Remote Monitoring Configure Remote Monitoring

More information

Cisco Unified Workforce Optimization

Cisco Unified Workforce Optimization Cisco Unified Workforce Optimization Quality Management Application User Guide Version 9.0(1) First Published: June 15, 2012 Last Modified: April 7, 2014 Americas Headquarters Cisco Systems, Inc. 170 West

More information

Enterprise Chat and Deployment and Maintenance Guide, Release 11.6(1)

Enterprise Chat and  Deployment and Maintenance Guide, Release 11.6(1) Enterprise Chat and Email Deployment and Maintenance Guide, Release 11.6(1) For Unified Contact Center Enterprise First Published: August 2017 Last Modified: October 2017 Americas Headquarters Cisco Systems,

More information

Chatter Answers Implementation Guide

Chatter Answers Implementation Guide Chatter Answers Implementation Guide Salesforce, Summer 18 @salesforcedocs Last updated: July 26, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Unified CCX Administration Web Interface

Unified CCX Administration Web Interface The Unified CCX provides a multimedia (voice, data, and web) IP-enabled customer-care application environment, using VoIP technology that allows your Cisco Unified Communications network to share resources

More information

Enterprise Chat and Supervisor s Guide, Release 11.5(1)

Enterprise Chat and  Supervisor s Guide, Release 11.5(1) Enterprise Chat and Email Supervisor s Guide, Release 11.5(1) For Unified Contact Center Enterprise August 2016 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA

More information

Zendesk Screen Pop Connector. Printed Help. PureConnect powered by Customer Interaction Center (CIC) 2018 R1. Abstract

Zendesk Screen Pop Connector. Printed Help. PureConnect powered by Customer Interaction Center (CIC) 2018 R1. Abstract Zendesk Screen Pop Connector Printed Help PureConnect powered by Customer Interaction Center (CIC) 2018 R1 Last updated October 31, 2017 Abstract This document is a printable version of the Zendesk Screen

More information

Cisco CVP VoiceXML 3.1. Installation Guide

Cisco CVP VoiceXML 3.1. Installation Guide Cisco CVP VoiceXML 3.1 CISCO CVP VOICEXML 3.1 Publication date: October 2005 Copyright (C) 2001-2005 Audium Corporation. All rights reserved. Distributed by Cisco Systems, Inc. under license from Audium

More information

Elixir Repertoire supports any Java SE version 6.x Runtime Environment (JRE) or later compliant platforms such as the following:

Elixir Repertoire supports any Java SE version 6.x Runtime Environment (JRE) or later compliant platforms such as the following: 1. Installing Repertoire 8.x The Elixir toolset now combines Ensemble (Data Designer), Report (Report Designer) and Perspective (Dashboard Designer) into a single Repertoire Designer. This is the standalone

More information

Cisco UCS Director API Integration and Customization Guide, Release 5.4

Cisco UCS Director API Integration and Customization Guide, Release 5.4 Cisco UCS Director API Integration and Customization Guide, Release 5.4 First Published: November 03, 2015 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

Cisco Unified Web and Interaction Manager Browser Settings Guide

Cisco Unified Web and  Interaction Manager Browser Settings Guide Cisco Unified Web and E-Mail Interaction Manager Browser Settings Guide For Unified Contact Center Enterprise and Hosted and Unified ICM Release 4.3(1) September 2009 Americas Headquarters Cisco Systems,

More information

ForgeRock Access Management Customization and APIs

ForgeRock Access Management Customization and APIs training@forgerock.com ForgeRock Access Management Customization and APIs Description AM-421 Course Description Revision B This course provides a hands-on technical introduction to ForgeRock Access Management

More information

Troubleshooting. Chat is down due to temporary outages

Troubleshooting. Chat is down due to temporary outages Chat is down due to temporary outages, page 1 You are not configured for Chat and Email, page 2 An Error Occurred While Joining the Chat Room, page 2 Chat Disconnected, page 2 Cannot Load Predefined Responses,

More information

Basic Steps for Autotask Endpoint Management. Updated Wednesday, January 31, Autotask Corporation

Basic Steps for Autotask Endpoint Management. Updated Wednesday, January 31, Autotask Corporation Basic Steps for Autotask Endpoint Management Updated Wednesday, January 31, 2018 2018 Autotask Corporation Table of Contents Table of Contents 2 Basic Steps 3 Step 1 - Log in 4 Step 2 - Create a New Site

More information

UNITY CRM INTEGRATION USER GUIDE

UNITY CRM INTEGRATION USER GUIDE UNITY CRM INTEGRATION USER GUIDE CONTENTS 1 Overview... 1 2 Configuring Salesforce Integration... 2 3 Configuring AGILE CRM Integration... 5 4 Configuring MS Dynamics Integration... 7 4.1 Integrating MS

More information

Release Notes for Cisco Finesse Release 9.0(1)

Release Notes for Cisco Finesse Release 9.0(1) These release notes provide the following information. You might need to notify your users about some of the information provided in this document. Introduction, page 1 Hardware and Software Specifications

More information

WebAnalyzer Plus Getting Started Guide

WebAnalyzer Plus Getting Started Guide WebAnalyzer Plus Getting Started Guide www.manageengine.com/web-analytics Contents 1 Introduction 4 2 3 4 5 WebAnalyzer Plus Overview Getting Started System Requirements Installation Starting and Accessing

More information

Leverage the Power of Pentaho Visualizations Within Your Application. Andrew Grohe Pentaho Director of Services Delivery, Hitachi Vantara

Leverage the Power of Pentaho Visualizations Within Your Application. Andrew Grohe Pentaho Director of Services Delivery, Hitachi Vantara Leverage the Power of Pentaho Visualizations Within Your Application Andrew Grohe Pentaho Director of Services Delivery, Hitachi Vantara Agenda This session will discuss the four levels of embedded integrations

More information

Release Notes for Cisco Service Portal for Release 9.4

Release Notes for Cisco Service Portal for Release 9.4 Release Notes for for Release 9.4 First Published: July 27, 2012 Contents New and Changed Information, page 1 Installation Notes, page 5 Limitations and Restrictions, page 5 Important Notes, page 6 Documentation

More information

Cisco Service Control Online Advertising Solution Guide: Behavioral. Profile Creation Using Traffic Mirroring, Release 4.0.x

Cisco Service Control Online Advertising Solution Guide: Behavioral. Profile Creation Using Traffic Mirroring, Release 4.0.x CISCO SERVICE CONTROL SOLUTION GUIDE Cisco Service Control Online Advertising Solution Guide: Behavioral Profile Creation Using Traffic Mirroring, Release 4.0.x 1 Overview 2 Configuring Traffic Mirroring

More information

Certificates for Live Data Standalone

Certificates for Live Data Standalone Certificates and Secure Communications, on page 1 Export Self-Signed Live Data Certificates, on page 2 Import Self-Signed Live Data Certificates, on page 3 Produce Certificate Internally, on page 4 Deploy

More information

Deploying Cisco Unified Contact Center Express (UCCXD)

Deploying Cisco Unified Contact Center Express (UCCXD) Deploying Cisco Unified Contact Center Express (UCCXD) COURSE OVERVIEW: This course, Deploying Cisco Unified Contact Center Express (UCCXD) provides the student with hands-on experience and knowledge of

More information

TRAINING GUIDE. Lucity Web Services APIs

TRAINING GUIDE. Lucity Web Services APIs TRAINING GUIDE Lucity Web Services APIs Lucity Web Services APIs Lucity offers several web service APIs. This guide covers the Lucity Citizen Portal API as well as the. Contents How it Works... 2 Basics...

More information

Creating a custom gadget using the Finesse JavaScript Library API

Creating a custom gadget using the Finesse JavaScript Library API Creating a custom gadget using the Finesse JavaScript Library API Denise Kwan, Software Engineer @ DevNet Cisco Spark How Questions? Use Cisco Spark to communicate with the speaker after the session 1.

More information

REST API Operations. 8.0 Release. 12/1/2015 Version 8.0.0

REST API Operations. 8.0 Release. 12/1/2015 Version 8.0.0 REST API Operations 8.0 Release 12/1/2015 Version 8.0.0 Table of Contents Business Object Operations... 3 Search Operations... 6 Security Operations... 8 Service Operations... 11 Business Object Operations

More information

Own change. TECHNICAL WHITE PAPER Data Integration With REST API

Own change. TECHNICAL WHITE PAPER Data Integration With REST API TECHNICAL WHITE PAPER Data Integration With REST API Real-time or near real-time accurate and fast retrieval of key metrics is a critical need for an organization. Many times, valuable data are stored

More information

Application Notes for Virsae Service Management for Unified Communications with Avaya Aura Session Manager - Issue 1.0

Application Notes for Virsae Service Management for Unified Communications with Avaya Aura Session Manager - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Virsae Service Management for Unified Communications with Avaya Aura Session Manager - Issue 1.0 Abstract These Application Notes describe

More information

User Authentication APIs

User Authentication APIs Introduction, page 1 signin, page 1 signout, page 5 Introduction MediaSense enables third-party developers to configure application users that allow third party applications to authenticate themselves.

More information

Session ID vsphere Client Plug-ins. Nimish Sheth Manas Kelshikar

Session ID vsphere Client Plug-ins. Nimish Sheth Manas Kelshikar Session ID vsphere Client Plug-ins Nimish Sheth Manas Kelshikar Disclaimer This session may contain product features that are currently under development. This session/overview of the new technology represents

More information

engagement for The Digital Era

engagement for The Digital Era engagement for The Digital Era Gregg Widdowson Digital Engagement Lead 2016 Avaya Inc. All rights reserved. Trends OUTCOME DRIVEN PERSONALIZATION CLOUD EVERYTHING MOBILITY EVERYWHERE EXTREME ANALYTICS

More information

TeamViewer 12 Manual Management Console. Rev

TeamViewer 12 Manual Management Console. Rev TeamViewer 12 Manual Management Console Rev 12.1-201704 TeamViewer GmbH Jahnstraße 30 D-73037 Göppingen www.teamviewer.com Table of content 1 About the TeamViewer Management Console 4 1.1 About the Management

More information

XCONNECT 2018 GATEWAY USER MANUAL

XCONNECT 2018 GATEWAY USER MANUAL XCONNECT 2018 GATEWAY USER MANUAL V1.0 This guide will assist in the installation and configuration of the xconnect 2018 Gateway. Version 1.0 of the xconnect Gateway web portal includes the necessary functionality

More information

Cisco Unified Workforce Optimization

Cisco Unified Workforce Optimization Cisco Unified Workforce Optimization Quality Management Integration Guide for CAD and Finesse Version 10.5 First Published: June 2, 2014 Last Updated: September 15, 2015 THE SPECIFICATIONS AND INFORMATION

More information

Programming with the Finesse API

Programming with the Finesse API Programming with the Finesse API OpenSocial Gadgets Source: http://www.slideshare.net/wuzziwug/opensocial-intro-presentation OpenSocial Gadgets A gadget spec: Is an XML file Defines metadata about an OpenSocial

More information

An Overview. Version Quadient Group AG Quadient Group AG https://www.quadient.com/documentation

An Overview. Version Quadient Group AG Quadient Group AG https://www.quadient.com/documentation An Overview Version 12.0 Quadient Group AG 2018 Quadient Group AG https://www.quadient.com/documentation Quadient Cloud R12 An Overview Product version 12.0 Document version 12.0.0.3 Release date: April

More information

Cisco Videoscape Distribution Suite Service Broker

Cisco Videoscape Distribution Suite Service Broker Solution Overview Cisco Videoscape Distribution Suite Service Broker Product Overview Cisco Videoscape Distribution Suite Service Broker (VDS SB) is responsible for performing client request routing in

More information

Cisco Unified Workforce Optimization

Cisco Unified Workforce Optimization Cisco Unified Workforce Optimization Quality Management Integration Guide for CAD and Finesse Version 11.5 First Published: July 28, 2016 Last Updated: July 28, 2016 Cisco Systems, Inc. www.cisco.com THE

More information

Context Service Context Service Context Service

Context Service Context Service Context Service , on page 1 Design Considerations, on page 3 Omnichannel Customer Journey, on page 3 Task Flow to Enable, on page 4 Setup, on page 5 Component Configuration and Registration, on page 8 Solution Serviceability,

More information

C. Collect engine heap performance data via the Cisco Unified Real-Time Monitoring Tool.

C. Collect engine heap performance data via the Cisco Unified Real-Time Monitoring Tool. Volume: 50 Questions Question No: 1 In a high availability over WAN deployment, which option cannot be located across the WAN from the active Cisco Unified Contact Center Express site? A. SMTP server B.

More information

Frequently Asked Questions Oracle Content Management Integration. An Oracle White Paper June 2007

Frequently Asked Questions Oracle Content Management Integration. An Oracle White Paper June 2007 Frequently Asked Questions Oracle Content Management Integration An Oracle White Paper June 2007 NOTE: The following is intended to outline our general product direction. It is intended for information

More information

HEAT Software Integration with Remote Support

HEAT Software Integration with Remote Support HEAT Software Integration with Remote Support 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property of their

More information

RingCentral for MINDBODY. User Guide

RingCentral for MINDBODY. User Guide RingCentral for MINDBODY User Guide RingCentral for MINDBODY User Guide Contents 2 Contents Introduction.............................................................. 3 About RingCentral for MINDBODY.....................................................

More information

SAS Model Manager 2.3

SAS Model Manager 2.3 SAS Model Manager 2.3 Administrator's Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2010. SAS Model Manager 2.3: Administrator's Guide. Cary,

More information

Addressing Security Loopholes of Third Party Browser Plug ins UPDATED FEBRUARY 2017

Addressing Security Loopholes of Third Party Browser Plug ins UPDATED FEBRUARY 2017 Addressing Security Loopholes of Third Party Browser Plug ins UPDATED FEBRUARY 2017 Jay Kelley, 2015-22-12 February 2017 Update Endpoint inspection and network access support with Chrome browser, Firefox,

More information

Cisco Remote Expert Manager Agent s Workstation Setup Guide

Cisco Remote Expert Manager Agent s Workstation Setup Guide Cisco Remote Expert Manager Agent s Workstation Setup Guide Release 1.9.5 July 7, 2015 Note All advertising materials mentioning features or use of this software must display the following acknowledgement:

More information

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 14 Database Connectivity and Web Technologies

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 14 Database Connectivity and Web Technologies Database Systems: Design, Implementation, and Management Tenth Edition Chapter 14 Database Connectivity and Web Technologies Database Connectivity Mechanisms by which application programs connect and communicate

More information

Accelerate critical decisions and optimize network use with distributed computing

Accelerate critical decisions and optimize network use with distributed computing DATASHEET EDGE & FOG PROCESSING MODULE Accelerate critical decisions and optimize network use with distributed computing Add computing power anywhere in your distributed network with the Cisco Kinetic

More information

FAQ. General Information: Online Support:

FAQ. General Information: Online Support: FAQ General Information: info@cionsystems.com Online Support: support@cionsystems.com CionSystems Inc. Mailing Address: 16625 Redmond Way, Ste M106 Redmond, WA. 98052 http://www.cionsystems.com Phone:

More information

Administration Guide. 05 Apr TM and copyright Imagicle spa

Administration Guide. 05 Apr TM and copyright Imagicle spa Administration Guide 05 Apr 2019 TM and copyright 2010-2019 Imagicle spa Table of Contents Administration Guide...1/5 Jabber Gadgets Setup...1/5 Administration Guide Jabber Gadgets Setup The Imagicle Gadget

More information

Certificates for Live Data

Certificates for Live Data You must set up security certificates for Finesse and Cisco Unified Intelligence Center with HTTPS. You can: Use the self-signed certificates provided with Finesse and Cisco Unified Intelligence Center.

More information

Zendesk Instructions for End-Users

Zendesk Instructions for End-Users Zendesk Instructions for End-Users Ver. 1.00 July, 2013 Ver. 1.00 July, 2013 Zendesk Instructions for End-Users Getting Started Registering & Logging in to Zendesk To submit and then track your support

More information

Cisco UCCX Configuration Guide. Comstice Mobile Agent App for Cisco UCCX Configuration Steps. made with

Cisco UCCX Configuration Guide. Comstice Mobile Agent App for Cisco UCCX Configuration Steps. made with Cisco UCCX Configuration Guide Comstice Mobile Agent App for Cisco UCCX Configuration Steps made with Mobile Agent App Benefits Contact Center Agent without Desktop PC Comstice Mobile Agent App is a Cisco

More information

REST access to ESM Web Services

REST access to ESM Web Services REST access to ESM Web Services Dmitry Udalov, Sr. Software Engineer #HPProtect Forward-looking statements This is a rolling (up to three year) Roadmap and is subject to change without notice. This document

More information