Star us on GitHub
Star
Welcome to highlight.io
Company
Mission & Values
Compliance & Security
Open Source
Getting Started
Overview
Fullstack Mapping
Backend / Server
Frontend / Client
Fullstack Frameworks
Product Features
Session Replay
Error Monitoring
General Features
Logging
Integrations
Integrations Overview
Amplitude Integration
ClickUp Integration
Discord Integration
Electron Support
Front Integration
Height Integration
Intercom Integration
Linear Integration
Mixpanel Integration
Segment Integration
Slack Integration
Vercel Integration
Tips
Content-Security-Policy
Local Development
Monkey Patches
Performance Impact
Proxying Highlight
Session Search Deep Linking
Troubleshooting
Upgrading Highlight
Highlight.io Changelog
Changelog 12 (02/17)
Menu
Docs / Highlight Docs / Integrations / Intercom Integration

Intercom Integration

Highlight makes it easy to send events to Intercom. If you have both Highlight and Intercom already configured, then you're all set. We've already set things up for you in the background.

If you want to disable this integration, you can set enabled: false for the integration in your client config:

H.init("<YOUR_PROJECT_ID>", { integrations: { intercom: { enabled: false } } });
Copy
Messaging

Whenever a user sends you a message on Intercom, Highlight will add a custom user attribute called highlightSessionUrl to the user. This is the URL for the latest session created by that user. This is helpful to see what the user was doing that led up to the user sending a message.

API
trackEvent

Calling H.track will forward the data to Intercom's Intercom('trackEvent').

H.track('signup_button_clicked', { firstTime: true, impressions: 10, }) // The Highlight track call is equivalent to this Intercom call Intercom('trackEvent', 'signup_button_clicked', { firstTime: true, impressions: 10, })
Copy