Support Tools Integration
SessionReplay.getSessionReplayLink();Intercom Example
const link = await SessionReplay.getSessionReplayLink();
if (link !== null) {
await Intercom.logEvent('session-replay-url', {
url: link,
});
await Intercom.present();
}Last updated