The Bold BI Embed SDK allows you to seamlessly integrate and visualize pinboards published on your Bold BI server within your web applications. By specifying the server URL, pinboard name, and embed token, you can securely embed and manage the pinboard experience.
For more details, refer to the official documentation: Embed Pinboard.
<div id="embed_container"></div>
<script>
function embedSample() {
var boldbiEmbedInstance = BoldBI.create({
serverUrl: "<Bold BI Server URL>",
pinboardName: "<Pinboard Name>",
embedContainerId: "<Embed Container ID>",
embedToken: "<Embed token generated from backend server>"
});
boldbiEmbedInstance.loadPinboard();
}
</script>In this section, the details of public APIs are provided along with code examples: