Events
Within your website, the following events will be frequently sent from the application:
Initialize
Triggered by: Whitelabel application
The custom event bm__init
will be sent out upon initialization of the whitelabel application.
By listening to this event, the host website can natvely respond to the next steps, including setting limits to the application.
Set Limit
Triggered by: Host application
The custom event bm__set-limit
should be sent dynamically by the host application to control the limits of the whitelabel application.
window.dispatchEvent(
new CustomEvent('bm__set-limit', { bubbles: true, detail: 50000 }) // in cents ($500)
);
Get Limit
Triggered by: Whitelabel application
The custom event bm__get-limit
will be sent out whenever there are any changes to the account balance from successful bet placements, to deposits and withdrawals from the whitelabel application.
By listening to this event, the host website can natively respond by updating its own wallet and update in realtime.
window.addEventListener('bm__get-limit', function (event) {
var newLimit = 40000; // in cents ($400), taken host application API
window.dispatchEvent(
new CustomEvent('bm__set-limit', { bubbles: true, detail: newLimit })
);
});
Print Ticket
Triggered by: Whitelabel application
The custom event bm__print-ticket
will be sent out whenever there are any user events to trigger the printing of the receipts.
By listening to this event, the host website can natively support its own printing capabilities in realtime.
window.addEventListener('bm__print-receipt', function (event) {
// event.details will include details for each bet
})
Ticket Printed
Triggered by: Host application
The custom event bm__ticket-printed
should be sent dynamically by the host application to notify of the ticket being successfully printed. This will in turn allow the whitelabel application to proceed back to betting.