Embed
If you're embedding the terminal within another website, in order to maintain the best possible performance, we encourage the use of creating a div
for where you want to place the terminal (i.e. within another page) and run the following:
window.addEventListener('load', function () {
// Assuming your <div id="betmakers-terminal"></div> is available
var element = document.getElementById('betmakers-terminal');
window.bm.init({
proxyUrl: 'https://proxy.your-server.com/api', // Your proxy server
getHeaders: function () {
// Asynchronously return any headers required by the proxy server. This is typically used to retrieve the bearer token, which requires a JWT with the provided "iss" claim.
},
metadata: {
tellerId: 'xxxx',
windowId: 'yyyy',
reportGrouping: 'rrrr',
},
timezone: 'America/New_York',
}, element);
});
Whilst embedding the terminal, you may want to make full use of the eventing system in order to get realtime updates into your website.