Heap

Integrating SessionStack with Heap

Add a SessionStack recording to a Heap user profile.

Add this code anywhere in your app, after SessionStack and Heap have been loaded.

sessionstack('getSessionId', function(sessionId) {
    if (sessionId) {
        heap.track('SessionStack', { 
            sessionURL: 'https://app.sessionstack.com/player/#/sessions/' + sessionId 
        });
    }
});