Social Intents is a chat solution for Teams and Slack. 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.socialintents.com
Social Intents Chat Integration Instructions
To integrate Social Intents Chat:
- 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
- Ensure you replace the code with your Social Intents Chat code
- Once you've applied your code, select Submit to finalize your setting
Your Social Intents Chat 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 Social Intents Chat Header Script
<script src="//www.socialintents.com/api/socialintents.1.3.js#xxxxxxx" async="async"></script>
<script>
var myEmail = "";
var myDisplayName = "";
var myCompanyName = "";
function CloudRadialUserInit(email, displayname, companyname) {
myEmail = email;
myDisplayName = displayname;
myCompanyName = companyname;
}
function CloudRadialUserLogout() {
}
function onSIApiReady() {
SI_API.setChatInfo(myDisplayName,myEmail,'','');
};
</script>
Comments
0 comments
Article is closed for comments.