Jump to Content
SessionStack
GuidesAPI Reference
Sign UpSessionStack
Guides
Sign Up
GuidesAPI Reference

Installation

  • Getting Started
  • Script Tag
  • Google Tag Manager
  • Dev Environment
  • Test Without Installing

SessionStack

  • Co-browsing and live sessions
    • Joining a Live Session
    • Live Support Toolkit
  • Session Recording & Segments Dashboard
  • User Session Definition
  • Data Collection
  • Sensitive Data
  • Notifications
  • Page Targeting
    • Simple Match
    • Exact Match
    • Starts With
    • Ends With
    • Contains
    • Regular Expression
  • Recording Iframes
  • API Docs
  • Visited URL
  • Clicked Element
  • User Input
  • Rage Click
  • Dead Click
  • Custom Events
  • Contextual Filters
  • Session Length
  • Active Time
  • First Seen & Last Seen
  • User Management Dashboard
  • Funnels

Performance

  • Overview
  • Page Load
  • Runtime
  • Network

Security

  • Overview
  • Infrastructure
  • Operational
  • Application
  • PII and Sensitive Data
  • On-premises Deployment
  • Payment Information (PCI)

Compliance

  • GDPR
  • HIPAA
  • Opt-out

Integrations

  • Overview
  • Sentry
  • Intercom
  • Zendesk Support
  • Zendesk Chat
  • Bugsnag
  • Rollbar
  • Errorception
  • Google Analytics
  • Segment
  • Mixpanel
  • Trackjs
  • Drift
  • Heap
  • Raygun
  • Other Services
Powered by 

Mixpanel

Integrating SessionStack with Mixpanel

Suggest Edits

Add a SessionStack recording to every Mixpanel user profile.

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

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

Updated about 7 years ago