Skip to main content
Version: Next

Conversation Card

Use the Conversation Card to display a conversation card easily.

Overview

The Conversation Card is an embeddable UI component for displaying a quick view of a conversation.

Features include :

  • Two layout : Choose the best one for your use case.
  • Customizable : Colors, Padding, Margin pimp your component to fit into your product.
  • Events : Subscribe to the custom event and you'll be informed when someone click on it

widgets

widgets

Create a static file or include it directly in your application

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Reecall - Conversation card</title>
<script src="https://js.reecall.com/v1/elements.js"></script>
<script src="/reecall.js" defer></script>
</head>
<body>
<main>
<h1>Conversation card</h1>
<p> Include a conversation card directly in your product view ! </p>
<div id="conversation-card">
<!-- Reecall will create the conversation card here -->
</div>
</main>
</body>
</html>

Attributes

{
conversationId:"string", // id de la conversation
options:{
display:"string" //two options full or tiny
},
appearance:{
width:"",// in px or %
border:boolean, //default true
borderColor:"",
borderRadius:"",
backgroundColor:"", // default #FFFFFF
padding:{
top:"0px";
left:"0px",
right:"0px",
bottom:"0px"
},
margin:{
top:"0px";
left:"0px",
right:"0px",
bottom:"0px"
}
}
}