Analytics
Analytics allow you to track actions performed by the user that will be then grouped and presented to the event organizers as Moment-specific reports
track(): void
track(): voiddocument.querySelector("#testButton").onclick = function(event) {
const action = 'test_button_click';
let options = {
category: 'generic_click_event',
value: 1,
label: 'Test Button clicked',
bundleId: 'com.stagecast.demo_example'
};
SDK.analytics.track(action, options);
}Last updated