Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Chat Start: When the chat begins. 
  2. Chat Conversion: When the Prospect record is enriched. 
  3. Chat End: When the chat was finished. 

Lead Qualification

When a chat occurs Prospects are automatically scored using /wiki/spaces/DEV/pages/18907393. Scores can be changed by double clicking on the score value. Chat Start, Decline, and Conversion activities are scored. 

Image Added

Adding a Chat System

Other chat software such as Drift, LiveChat, and more can be integrated. There are two options for integrating chat:

  1. Call JavaScript functions from your chat software. Great for proprietary chat systems. 
  2. Lead Liaison adds "listeners" into our backend which works with your existing Lead Liaison tracking code. 

In scenario #2#1, the functions to call will be similar to the ones below:

  • ll_jivochatchat_integration.process_track_chat_invite(‘jivo’);
  • ll_jivochatchat_integration.process_track_chat_decline(‘jivo’);
  • ll_jivochatchat_integration.process_track_chat_start(‘jivo’);
  • ll_jivochatchat_integration.process_track_chat_end(‘jivo’);
  • ll_jivochatchat_integration.process_track_chat_conversion(‘jivo’, contact_info);
Info
titleContact Info Object

For the contact_info variable passed to the function, it should be in the format below. Name or email is required:

var contact_info = {
Prospect_FullName : “John Smith”,
Prospect_Email : “jsmith@company.com”,
Prospect_WorkPhone : “1234567890”,
Prospect_Comments : “Some comments”
};


If you have chat software you'd like to integrate with Lead Liaison, then contact your Lead Liaison Representative with details.