JivoChat provides a powerful and extensible platform for chat. You can integrate Social Intents Chat with CloudRadial while also allowing the chat widget to automatically pull the user's name and email from their CloudRadial log-in information.
More details on their product can be found here: https://www.jivochat.com/
JivoChat Integration Instructions
To integrate JivoChat:
- Navigate to Partner > Settings
- Select Integrations on the right (under the Configuration column)
- Select the Header Scripts option
- Enter the code below in the Header Scripts field
- Change the token to match the one provided in your widget code.
- Do not copy the full script, just the code.
- Once you've applied your code, select Submit to finalize your setting
Your JivoChat icon should appear at the bottom right of the screen after a refresh.
The user name and email are prefilled so when a chat is started. The result is that the user's name and email will appear in the chat automatically without requiring them to type them in.
Sample JivoChat Header Script
<script src="//code.jivosite.com/widget/xxxxxxxx" async></script>
<script type="text/javascript">
function CloudRadialUserInit(email, displayname, companyname) {
jivo_onLoadCallback = function ()
{
jivo_api.setContactInfo({
"name": displayname,
"email": email
});
};
}
</script>
More info is available here: https://www.jivochat.com/api/#setcontactinfo
Comments
0 comments
Article is closed for comments.