Intercom Destination
Intercom (Classic) is in Maintenance mode
The Intercom (Classic) Destination has entered maintenance mode. Future updates are limited to security updates and bug fixes. New versions of the destination are available. See Intercom Cloud Mode (Actions) and Intercom Web (Actions) for more information.
Intercom makes customer messaging apps for sales, marketing, and support, connected on one platform. The Intercom Destination is open-source. You can browse the code for analytics.js, iOS, and Android on GitHub.
Getting Started
- From the Segment Destinations page click Add Destination.
- Search for “Intercom” and select it in the results that appear.
- Choose which Source to connect Intercom to.
-
Authorize your Intercom account in Segment and select the Intercom Account to sync with Segment.
You can choose which account to sync from the drop down menu in the top right. If you are using server-side sources, Segment starts passing data through once you activate the Destination. For other libraries continue reading below.
- Find your “App ID” in the Intercom UI or by navigating to the Gear Menu and clicking on “App Settings” followed by “API Keys”. It should look something like
9iefb489
.
Your changes appear in the Segment CDN in about 45 minutes, and then Analytics.js starts asynchronously loading Intercom’s library.js
onto your page.
This means you should remove Intercom’s snippet from your page.
Mobile
IMPORTANT: The Intercom mobile components are currently in public beta.
Before reading the specific instructions for iOS or Android below, make sure you enter your Mobile API Key in the Segment Settings UI. This is required to send data to Intercom from your mobile apps.
iOS
- In your application, add
pod 'Segment-Intercom'
to your Podfile. - After adding the dependency, you must import the integration
'SEGIntercomIntegrationFactory.h'
and register it with the Segment SDK[configuration use:[SEGIntercomIntegrationFactory instance]];
. - When installing Intercom, you must make sure that you have a
NSPhotoLibraryUsageDescription
entry in yourInfo.plist
. This is required by Apple for all apps that access the photo library, and is necessary due to the image upload feature. Users are prompted for the photo library permission only when they tap the image upload button.
Android
- Add
compile 'com.segment.analytics.android.integrations:intercom:+'
to your app-levelbuild.gradle
file - Sync your project, then import the integration in your Application subclass or wherever you’re initializing Segment:
import com.segment.analytics.android.integrations.intercom.IntercomIntegration;
-
Next, register the
IntercomIntegration.FACTORY
with the Segment SDK:analytics = new Analytics.Builder(this, "write_key") .use(IntercomIntegration.FACTORY) .build();
Page
If you’re not familiar with the Segment Specs, take a look to understand what the Page method does. An example call would look like:
analytics.page();
The Page call only works in device-mode through Analytics.js by triggering the Intercom update
method, which looks for new Intercom messages that should be displayed to the current user. It is not supported by any of the server-side or mobile SDKs.
Intercom Respond
If you have Intercom’s Respond package, calling page
triggers the chat widget to appear. Otherwise, you must use the Identify method to make the chat widget appear.
If you have the Respond package and calling page
still does not show your chat widget, be sure to check your “Visitors on your website” setting inside your Intercom account.
Identify
If you’re not familiar with the Segment Specs, take a look to understand what the Identify method does. An example call would look like:
analytics.identify('su3r73', {
name: 'Iñigo Montoya',
email: 'avenger@example.com',
company: {
id: '123',
name: 'Iñigo & Friends Holding Company'
},
createdAt: 'Mon Mar 26 2018 17:44:51 GMT+0000 (UTC)'
});
When you call Identify, Segment creates or updates the user in Intercom using their Users API. Segment does not currently support creation of leads.
Intercom associates Track events with known users. An Identify call with a userId
is required before Track events are associated properly. Segment’s bundled mobile SDKs also require that identify
be called prior to track
, but accepts setting an unknown user in Intercom using the anonymousId
.
Keep reading for more information about the Identify call depending on the source type you send it from.
Client
- Passing
traits.company
creates a new Intercom Company if thecompany_id
does not match a known company. See the Intercom contact model documentation for more details. - Trait values must be no longer than 255 characters
When you call Identify on analytics.js
, Segment creates the intercomSettings
object and loads Intercom’s JavaScript into the page.
Here’s how Segment parameters are mapped to those in the intercomSettings
object:
Segment Parameter | Intercom Parameter | Description |
---|---|---|
userId |
intercomSettings.user_id |
The user ID for this user. |
traits |
intercomSettings.custom_attributes |
The traits associated for this user. |
traits.email |
intercomSettings.email |
The email of this user. |
traits.name |
intercomSettings.name |
The full name of this user. |
traits.company |
intercomSettings.company |
The company associated for this user. |
traits.createdAt |
intercomSettings.created_at |
The UNIX timestamp when the user was created. |
Intercom rejects trait values longer than 255 characters.
If a user with traits.company
is identified and the company_id
does not match a known company, a new company is created in Intercom. If company is a string, Segment sets the company_id
as a hash of company_name
as an id is required to associate the user to the company. You can use a Group call to create and update company profiles explicitly.
Server
When you call Identify from any of the server-side libraries or mobile sources in Cloud-mode, Segment maps the special traits (email
, firstName
, lastName
, createdAt
, and company
) to Intercom special properties.
To include last_seen_user_agent
, add it to the context.userAgent
. Similarly with last_seen_ip
which is used for geolocation, you can include the IP address at context.ip
. View the last seen trait section for more information.
Mobile
Intercom supports both logged-in or logged-out users. You must register your users with Intercom before you can talk to them or see what they do in your app. This means that Identify must be called before Track.
Intercom allows users to choose to track only known or only unknown users, as well as both. Segment supports the ability to track both by checking for logged in users (determined by the userId
) and falling back to setting the user as “Unidentified” when this is not present.
Intercom knows when your app is backgrounded and comes alive again, so you won’t need to re-register your users.
Segment maps the following Intercom standard attributes on Identify.
Segment Parameter | Intercom Parameter | Description |
---|---|---|
traits.userId |
user_id |
The user ID for this user. |
traits.email |
email |
The email of this user. |
traits.name |
name |
The full name of this user. |
traits.phone |
phone |
The phone number for this user. |
traits.company |
company |
The company associated for this user. |
traits.signedUpAt |
created_at |
The signed up date as an NSDate (iOS) & Long (Android) |
integrations.intercom.language_override |
languageOverride |
The language override code for this user. |
integrations.intercom.unsubscribed |
unsubscribedFromEmails |
A boolean indicating if the user has unsubscribed from emails. |
remaining traits |
customAttributes |
Custom attributes for this user. |
Intercom supports values of type NSString, NSNumber or NSNull on iOS and String, Long, Float, Double, Boolean, Character, Byte, Short or Integer on Android. Pass Android traits using camel case to conform with Java convention.
Collect Context
When this option is selected, Identify calls include contextual information collected by Segment’s mobile libraries if it is available. This info is set as Custom Attributes on the Intercom user.
The fields collected from the context object are device.type
, device.manufacturer
, device.model
, os.name
, os.version
, app.name
, app.version
and appear in Intercom as device_type
, device_manufacturer
, device_model
, os_name
, os_version
, app_name
and app_version
.
Track
If you’re not familiar with the Segment Specs, take a look to understand what the Track method does. An example call would look like:
analytics.track('Product Purchased', {
order_ID: '2969302398',
category: 'boots',
product_name: 'yellow_cowboy_boots',
price: 99.95,
currency: 'EUR'
});
Because Intercom only associates Track events with known users, an Identify call with a userId
is required before Track events are associated properly.
When you make a Track call from any of the server-side libraries or mobile sources in cloud-mode
(for example, without the beta Segment mobile Intercom SDK installed), you must include either the userId
or email
of an existing user in Intercom.
Revenue and currency
If you send properties.revenue
and properties.currency
, Segment formats that according to Intercom’s Monetary Amount and send it as:
price: {
amount: <properties.revenue> * 100, // since Intercom requires this in cents
currency: <properties.currency> // defaults to 'usd'
}
The bundled mobile integrations also check properties.total
if properties.revenue
is not present, and assign the total value as the amount value.
Limited Properties
Intercom can only store five event properties per event. That means if you send an event to Segment with more than five properties, Intercom only shows the first five properties.
Limited Events
Intercom only allows a total of 120 unique active event names. If you’re sending Segment more than 120 unique event names, Intercom only accepts the first 120 events that their servers see, and the rest throw an error.
In Intercom, an “Active” event is an event that hasn’t been archived. If you archive an event, it makes it inactive and removes it from your 120 active events. If you need to bring your account back under the 120 event limit, archive some events from in the Intercom UI by navigating to Settings > (workspace name) data > Events, then click on the event to archive.
Server-side Race Condition
Because Segment’s server-side libraries batch calls by default, it is possible for an Identify call that would create a user record to arrive at the same time as a Track event associated with this user. If the Track event is processed before the user is created you get an error, and the event is not recorded.
Adding a Flush method immediately following the Identify, and before any additional Track events helps ensure that the Identify call reaches Intercom first to create the user. Generally, this is enough to prevent the race condition, but you can add an extra timeout if necessary.
If you still see issues, the Identify call is most likely either not reaching Intercom at all, or is arriving too late after a subsequent retry. You can use the Event Delivery functionality to check for recent errors and gain insight into error prevention.
Group
If you’re not familiar with the Segment Specs, take a look to understand what the Group method does. An example call would look like:
analytics.group('companyId123', {
name: 'Segment'
});
Segment supports Intercom companies in all sources. Users can be put into multiple groups, which associate them to multiple companies in Intercom.
When you call Group from any of any server-side libraries or mobile sources in cloud-mode (without Segment’s mobile Intercom SDK installed), you must include either the userId
or email
of an existing user in Intercom.
In order for the Company Sessions Count to update within Intercom, the company must first be recorded in an identify
call.
Segment Parameter | Intercom Parameter | Description |
---|---|---|
groupId |
companyId |
The ID for the company. |
traits.name |
name |
The name of the company. |
traits.plan |
plan |
The plan of the company. |
traits.monthly_spend |
monthlySpend |
The monthly spend of the company. |
traits.company |
intercomSettings.company |
The company associated for this user. |
traits.createdAt |
intercomSettings.created_at |
The UNIX timestamp when the user was created. |
remaining traits |
customAttributes |
Custom attributes for this user. |
Intercom supports values of type NSString
, NSNumber
or NSNull
on iOS, and String
, Long
, Float
, Double
, Boolean
, Character
, Byte
, Short
or Integer
on Android. Pass Android traits using camel case to conform with Java convention
Reset
Segment supports Intercom’s reset
method only for Device-mode Mobile sources. The bundled mobile SDKs reset
method un-registers a user in Intercom. When users want to log out of your app and you call Segment’s reset
method, Segment calls:
On iOS:
[Intercom reset];
On Android:
Analytics.with(context).reset();
Best Practices
Arrays and Objects
Intercom doesn’t support custom arrays or objects. This means that if you want to send a certain user trait
or event property
to Intercom, you must send them at the top level.
This limitation does not apply, however, for mapping company
objects on Identify calls. Segment continues to handle that in the same way as before. This is only applicable for any custom traits or properties.
Disassociating Users from a Company (server-side only)
You can disassociate a user from a company by passing in a field inside the company
trait with remove: true
in your Identify calls.
analytics.identify({
userId: '019mr8mf4r',
traits: {
name: 'Michael Bolton',
email: 'mbolton@example.com',
plan: 'Enterprise',
company: {
id: 12345,
remove: true
},
createdAt: 'Thu Mar 24 2016 17:46:45 GMT+0000 (UTC)'
}
});
Identity Verification
Intercom’s identity verification helps to make sure that conversations between you and your users are kept private and that one user can’t impersonate another. Segment supports identity verification through the analytics.js
web library and the iOS and Android mobile sources.
For mobile apps, before enabling identity verification, read Intercom’s docs on identity verification for iOS and Android.
If you want to enable Intercom identity verification for analytics.js
or bundled mobile SDKs, you can pass in the user_hash
variable inside the integrations object.
The user_hash
should be a SHA256 hash of your Intercom API secret and the userId
. The hash is not based on the email, it’s based on the userId
. Here’s an example rendering an identify call with identity verification:
analytics.identify('<%= current_user.id %>', {
email: '<%= current_user.email %>',
createdAt: '<%= current_user.created %>'
}, {
Intercom: {
user_hash: '<%= OpenSSL::HMAC.hexdigest("sha256", "YOUR_INTERCOM_APP_SECRET", current_user.id) %>'
}
});
Android
example:
Traits traits = new Traits();
Map<String, Object> intercomOptions = new HashMap<>();
intercomOptions.put("userHash", "YOUR_USER_HASH");
Options options = new Options().setIntegrationOptions("Intercom", intercomOptions);
Analytics.with(context).identify("123", traits, options);
YOUR_INTERCOM_APP_SECRET
is found in Intercom’s identity verification set up guide.
Identity verification plus filtering using Destinations Object
If using Intercom identity verification AND selective destinations functionality, the context object looks like this:
{
integrations: {
All: false,
Intercom: {
user_hash: '<%= OpenSSL::HMAC.hexdigest("sha256", "YOUR_INTERCOM_APP_SECRET", current_user.id) %>'
}
}
}
Unsubscribe Users
To unsubscribe users from emails, you may set a flag from server side libraries, unsubscribedFromEmails
, inside context
object:
Traits traits = new Traits();
Map<String, Object> intercomOptions = new HashMap<>();
intercomOptions.put("unsubscribedFromEmails", true);
Options options = new Options().setIntegrationOptions("Intercom", intercomOptions);
Analytics.with(context).identify("123", traits, options);
options:@{
@"integrations": @{
@"intercom" : @{
@"unsubscribed": @YES
}
}
}
analytics.identify({
userId: '4832094283057439285723523452345',
anonymousId:'43254364571',
context:{
Intercom: { unsubscribedFromEmails: true }
},
traits: {
firstName: 'John ',
lastName: 'Jacob',
email: 'jingleheimer@schmidt.com'
}
});
This works from server-side libraries and bundled mobile, and does NOT work in analytics.js
.
Last Seen
By default, Intercom updates the Last Seen user trait whenever a user’s profile is updated by Identify calls or if a Group call is sent with a user’s userId
. If you want to update a user without updating their Last Seen time, pass active
with a value of false
into the context (see example below) of your Identify or Group calls.
This only works server-side; Last Seen is always updated client-side. ID or name are necessary to update a company.
Here’s a full Python example of an Identify call with active
set to false
:
analytics.identify(user_id='some_user_id', traits={
"email": "ben@intercom.io",
"firstName": "Ben",
"lastName": "McRedmond"
"createdAt": 1363902294011,
"plan": "Premium"
}, context={
"ip": "192.168.0.1",
"active": False,
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.47 Safari/537.36"
})
Intercom Tags
Segment’s API doesn’t support Intercom tags. Traits can be used instead of tags to create segments of users, and the advantage is you can use those traits in other destinations like Segment.
Conditionally show the Intercom chat widget (Browser only)
You can take advantage of Intercom’s hide_default_launcher
option to selectively show the chat widget. First hide the Messenger for all users inside their UI using Messenger settings, then think about how you want to programmatically decide which users you’d like to show the widget to. Then you can pass an Intercom specific destination setting like this:
// with analytics.js
analytics.identify('teemo', { someTrait: 'x'}, {
Intercom: { hideDefaultLauncher: true }
});
You can pass in the Intercom specific option using all supported calls for this destination (page
, identify
, and group
).
Control the Intercom Chat Widget (Browser)
If you want to control the position or toggle the visibility of the Intercom Chat Widget, use the Intercom update
method. After the Intercom instance is loaded on the client side, you can update the widget styling.
//Set styling
window.intercomSettings = {
alignment: 'right',
horizontal_padding: 20,
vertical_padding: 20
};
//Apply update
window.Intercom("update");
Control the Intercom Chat Widget (Mobile)
Segment’s mobile SDKs let you tap into the Intercom instance that the integration creates so that you can call any of Intercom’s native methods, including all methods required to interact with the Intercom chat widget.
Here’s an example of how to grab the underlying Intercom instance on both Android and iOS.
analytics.onIntegrationReady("Intercom", new Callback() {
@Override public void onReady(Object instance) {
Intercom intercom = (Intercom) instance;
}
});
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(integrationDidStart:) name:SEGAnalyticsIntegrationDidStart object:nil];
- (void)integrationDidStart:(nonnull NSNotification *)notification
{
NSString *integration = notification.object;
if ([integration.name isEqualToString:@"Intercom"]) {
// Call Intercom library methods here.
}
}
For more information, view using destination-specific features with Analytics-Android, and Analytics-iOS destination initialization.
Push notification and deep linking
Segment’s mobile SDKs don’t support push notifications or deep linking out of the box. Refer to Intercom’s documentation for information on iOS push notifications and deep linking, as well as Android push notifications and deep linking.
The Android SDK bundles Intercom’s Firebase push notification dependency and cannot support Google Cloud Messaging push notifications.
Troubleshooting
I’m seeing a 403 Forbidden
error
You probably have Intercom’s identity verification setting turned on but are not passing the user_hash
correctly or at all.
You may also have to allowlist your domain in Intercom’s dashboard. Otherwise, events on non-whitelisted pages may be rejected with a 403 error.
My Intercom Widget doesn’t show up
Make sure you are sending a page
and identify
call when the page is loaded. This allows Intercom to register the page and the user, which would enable the widget to appear.
If you are sending those two calls, then check that the CSS selector for the widget is correct. The default is #IntercomDefaultWidget
, but if you customize your widget, then be sure to update this field accordingly.
My client-side and server-side calls are going to one Segment source, but different Intercom projects
Server-side calls go to the project selected when you authenticated your Intercom account while setting up the destination. Client-side calls go to the project referenced with the App ID setting. Make sure those projects are the same.
I’m seeing a “Cannot have more than 120 active event names” error
Intercom only allows a total of 120 unique event names. That means if you are sending Segment more than 120 unique event names, Intercom only accepts the first 120 events that hit their servers, and the rest throw an error.
If you want to prevent some of your events from being passed to Intercom and thus prevent the error, you can filter out Intercom in those events using the Selecting Destinations feature available on all of Segment’s libraries.
Using Intercom with Engage
Intercom is one of the most popular Destinations used with Engage.
You can send computed traits and audiences that you create in Engage to this Destination so that you can use this data in live chat, automated emails, and other Intercom features to personalize interactions with your customers.
You can set a “lookback window” for both computed traits and audiences, which limits the period of time in which data is considered when calculating the trait or audience. For example, you might set a lookback window of 7 days on an audience or trait like new_users_7_days
, but you would not add a lookback window to a trait that isn’t time-bounded, for example lifetime_value
.
When you specify a lookback window, Engage updates the audience or trait hourly. If you do not specify a lookback window, Engage continuously updates both computed traits and audiences in real time.
User-Level Traits and Audiences in Intercom
Engage sends User-Level data to Intercom using an Identify call that appends a trait to users’ profiles, or a Track call when a trait is computed or an audience is entered or exited.
User level computed traits
The name of the computed trait is added to the user profile as a trait, and the trait’s value is set to the value of the computed trait. When the trait is computed, Segment sends a Track call. For example: imagine you have a computed trait that counts the number of times a user visits your pricing page. If the user visits your pricing page five times, Segment sends an identify call with the property pricing_page_visits: 5
.
User level Audiences
The name of the audience is added to the user’s profile as a trait, with boolean value that indicates if the user is in the audience. For example, when a user first completes an order in a lookback window for the last 30 days, Engage sends an identify call with the property order_completed_last_30days: true
. When the user no longer satisfies these criteria (for example when it’s been longer than 30 days since the last purchase), Engage sets that value to false
.
When you first create an audience, Engage sends an identify
call for every user in the audience. Later syncs only update users which were added or removed from the audience since the last sync.
Segment does not support the creation of Leads in Intercom.
Account-Level Traits and Audiences in Intercom
Engage sends account-Level data to Intercom using an Identify event call that appends an account trait to the users’ profiles or a Track call when a trait is computed or an audience is entered or exited. Users are added to an account using a single Group call, which appends a groupID
to each user within the account.
Account level computed traits
When you build computed traits with Account-Level data, Engage computes for each account based on traits or aggregated user behavior. You can then export traits for each account, or for each user within an account. The name of the computed trait is added to the profiles of users who are part of the account as a user trait, and the value of the computed trait is added to the corresponding user’s user trait.
For example, imagine you have a computed trait that counts the number of times that users from a specific account visit your pricing page. If users visit your pricing page five times, Engage sends an identify call with the property pricing_page_visits: 5
.
Account level audiences
When you build audiences with Account-Level data, Engage returns a set of accounts or a set of users that match your criteria. Engage adds the name of the audience to the profile (individual user, or user within the account) as a trait, with a boolean value to indicate if the user is in the audience. For example: when users in an account first complete an order in the last 30 days, Engage sends an identify call with the property order_completed_last_30days: true
. When the users in this Account no longer satisfy these criteria (for example if it’s been more than 30 days) Segment sets that value to false
.
When you first create the audience, Engage sends an Identify call for every user in the account in that audience. Later syncs only send updates for individual accounts and users which were added or removed since the last sync.
For user-level events or traits, you can specify None of the users
, Any users
, or All users
when building your audience criteria.
Setting Up Engage and Intercom
To send computed traits or audiences to Intercom, you first must connect it to your Space. Once it’s set up, you can select Intercom as a destination for Engage data when you create computed traits or audiences.
- In your Segment workspace, click Engage in the left navigation bar, and select your Space.
- Click Engage Settings and select the Destinations tab.
- Click Add Destination.
- Search for Intercom and click it when it appears in the search results
- Click Configure Intercom.
- Click Connect to Intercom.
- Log in to Intercom to allow Segment to send data to Intercom.
Intercom Engage Quick Info
- Engage Destination type: Event Method (data is delivered to this Destination one-by-one on a real-time basis)
- Traits and Audiences created by: Identify calls add traits and audiences as traits on the user
- Do I need to create an
audience_name
field before Engage can update those values?: No, Engage creates the audience for you. Segment creates the name in Intercom when it passes useridentify
calls. - Audience appears as: A snake-cased version of the audience name (for example,
order_completed_last_30days: true
) with a boolean value oftrue
indicates that a user is in the audience. - Is there a Destination rate limit: Yes, 83 requests per 10 seconds.
- Lookback window allowed: Unlimited
- Identifiers required :
i
d
oremail
- Identifiers accepted :
i
d
andemail
- Client or Server-Side Connection: Server-side
This page was last modified: 11 Oct 2023
Need support?
Questions? Problems? Need more info? Contact Segment Support for assistance!