
|
|
||||||
|
||||||
» Forgot your password? |
LivePerson Integration GuideOverviewIntegrate LivePerson's live chat solution with your other applications to improve customer service and agent productivity. With By seamlessly connecting with billing, Sales Force Automation and Customer Relationship Management systems, LivePerson delivers expanded interoperability and enhanced functionality. In many instances, the integration process takes just minutes and requires little, or no, programming knowledge. BenefitsCombine the power of LivePerson’s real-time chat technology with other web-based applications to:
Integration OptionsLivePerson systems support both application and data integration. Application IntegrationIntegrating your web-based application enables you to access third-party tools directly from LivePerson’s chat agent console. For example, launch a specific page of the application to view the billing history of a visitor currently engaged in a chat, without leaving the operator desktop.
Data IntegrationIntegrating customer and account data supplies access to comprehensive visitor information within the agent console. A custom web page within LivePerson’s agent console displays important details such as account number and type of account.
Screenshot of UI with table with data (name, account#, phone, type of account…) Implementation ProcessFollow these instructions to integrate your solutions. In the Timpani Admin Console, go to the “Rules” menu and select the “Campaign Tracking” option.
For Web-based applicationsCreate an HTML page that will link to your Web-based application. <a href="https://billing.mycompany.com">Click Here</a> to open the billing system You can also automatically open the application using a redirect. For example you can automatically open a billing page using an HTML redirection. <meta http-equiv="Refresh" content="0;URL=https://billing.mycompany.com"> You can also include variables in the URL enabling you to open a specific page in the application. For example, you can open the account number of the visitor by passing the account number as a variable. <a href="https://billing.mycompany.com?accountNumber={LPVAR!accountNumber}"> See below the section about Custom Variables for more information For Data DisplayEnter the HTML source including the formatting and the data to display. For example, you can display a table with customer account information. The data is inserted in the HTML using macros to render the custom variables. See below the section about Custom Variables for more information. Note:There is a limit to the number of characters that can be used in the HTML alert (1000 characters). For the most flexibility in your integration, we recommend you create a Web page for the integration and host it on your Web server. This is described below under “Advanced Techniques”. Custom VariablesOverviewCustom Variables (also known as Tracking Variables) allow you to pass data from your webpage through to the Timpani operator interface. Data sent through the LivePerson pre-chat survey can also be associated with a custom variable. » Click here to learn more about custom variables Inserting Custom VariablesCustom variables macros are inserted in the HTML action box using accolades, for example:{LPVAR!accountNumber} Note: custom variable names are case sensitive Advanced integration techniquesCustom integration Web page You can create a custom integration web page and host it in your web server. The HTML action will simply be used to redirect to this custom Web page. For example: <meta http-equiv="Refresh" content="0;URL=http://www.mycompany.com Benefit The custom integration web page can include scripts (asp, jsp) . You can create scripts to improve the integration. For example, you can create a script which will identify the operator and automatic login the operator in a CRM system Single sign on option This option is desirable for environments with high security requirements. With the single sign on, your server is communicating directly with the LivePerson servers avoiding the need to pass on the data through the web pages. For more information on this option, please contact a consultant… Case StudyIntegration with SalesForce.comIn this example we created a custom Web integration page to:
HTML Action This tag will redirect to a custom web page and send the agent username, the visitor last name and account number. <meta http-equiv="Refresh" content="0;URL=http://www.mycompany.com/integration.asp?userName=
Integration custom web page Note: This example is written using Active Server Page scripts. It can easily be adapted for to JSP, pHp or other scripting language. The SalesForce search type is set to 2 which is the broadest search type (searches all fields). |
|||||