HomeDocumentationAPI Reference
Getting StartedAPI ReferenceBug ReportingCrash ReportingAPMHelp Center
These docs are for v8.1. Click to read the latest docs for v12.0.0.

Event Handlers

Covered here is how to set up the event handler that fires with every new message received.

New Received Message

This block is executed each time a new message is received in the SDK. This can be used to show your own UI when a new message is received when default chat notifications are disabled.

Replies.setOnNewReplyReceivedCallback(function () {
    //Create custom alert
});

What’s Next

You can set custom data, such as a user attribute, at any time, including inside event handlers. Logging user events in event handlers is possible as well.