Social Intents https://www.socialintents.com is a chat solution for Teams and Slack. You can easily integrate it with the CloudRadial portal and identify a user in the chat once they log into CloudRadial.
To integrate:
- Go to Partner > Settings and choose the Integrations option on the right.
- Choose the Header Scripts option and enter the code below. Be sure and use the right path and code for your Social Intents implementation.
- Save your settings and refresh the page.
Your chat icon should appear at the bottom right of the screen. The username and email are prefilled so when a chat is started, the user's name and email will appear in the chat.
<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
Please sign in to leave a comment.