Embed meeting room
To give your customers a fully embedded video call experience, you can embed the 24sessions meeting room in your website or application. This allows you to make the video experience a part of your brand and fully integrated to your customer journey.
You can embed a meeting room on your website or in an application. Alternatively a link to the meeting room can be displayed.
∞ Iframe: Embed to a website
You can display any existing meeting in an iframe on your website. To display the meeting in an iframe for a guest, you will need a unique access key for the meeting. This can be retrieved through by fetching the meeting details through the API, or from the response when creating a new meeting through the API.
Below is a sample code for displaying the 24sessions meeting room in an iframe:
// Get the URL
var url = "https://" + instance + ".24sessions.com/room/join/" + accessKey;
// Show the element that contains the iframe
document.getElementById("twentyfour-sessions-container").style.display = "block";
// Load the iframe
document.getElementById('twentyfour-iframe').src = url;
