Mixpanel Reference
Last updated
Was this helpful?
Last updated
Was this helpful?
Accepts , , and calls
Supports
Connection Modes:
Web
Mobile
Server
It is important to first your users so Mixpanel knows who they are and associates events to their user record in Mixpanel:
Here is an example of an identify call:
If you care about independently tracking the action that triggers an identify call, it is highly recommended that you send a freshpaint.track call for this purpose and not rely exclusively on the identify call to be visible in Mixpanel.
Once the Mixpanel integration is enabled, you can now set it as an event destination:
Events sent from Freshpaint to Mixpanel will show up as standard Mixpanel events. From there you can use your events in any of the Mixpanel reports. You can view them by navigating to Events and looking at recent events, or by searching for a specific event.
As Freshpaint's client-side javascript library loads Mixpanel's javascript library in the background, any UTM parameters captured as built-in event properties are passed into Mixpanel as UTM properties.
When using server-side connection mode, UTM parameters will need to be explicitly passed in as an event property, for example:
Enable this option if your application has multiple subdomains and you want the Mixpanel cookie to persist across those subdomains. This allows the user to be tracked across subdomains. This setting is not enabled by default.
Use Local Storage instead of a Cookie to persist Mixpanel SDK state. Local Storage can support more User Property data than a cookie. This setting is not enabled by default.
Please note that users cannot be tracked across Subdomains when using Local Storage.
Enabling this option will utilize a secure cookie that will only be transmitted over HTTPS. This setting is not enabled by default.
Enable this setting to make the Mixpanel javascript web SDK use the Freshpaint device ID. This improves data consistency - you'll see the same device id for data streamed from your customers' web browsers as for data backfilled from Freshpaint's servers. This setting is not enabled by default.
Changing this setting for an existing project will break historical data, so only enable this if you're setting up a new Mixpanel project.
Enable this setting to apply a default set of transformations from Freshpaint User Properties to Mixpanel Properties when making Identify call's.
first_name
$first_name
last_name
$last_name
phone_number
$phone
state
$region
city
$city
Changing this setting will break historical data, so only enable this if you're setting up a new Mixpanel project.
Events user's web browser will be sent directly to Mixpanel. Events from other sources, including mobile and server, will be sent first to Freshpaint's servers and then on to Mixpanel.
When available, geo-location data is appended to an identified user's record in Mixpanel.
By default, Freshpaint will provide the IP address of the browser to Mixpanel. You can also provide a custom IP address by providing a $ip
property.
Geo location information is derived from the IP address of the original agent, the web SDK, or embedded SDK. That IP address is then passed through to Mixpanel where it is resolved to a geo location.
Before using Mixpanel Group Analytics, you will need to configure the Group Identifier Trait in Freshpaint. The setting can be found in the configuration options for the Mixpanel integration.
The Group Identifier Trait is the name of the group key you want to use. When calling freshpaint.group
you will need to pass in the group key and the corresponding group id as group properties. As an example, if you are using company_name as your Group Identifier Trait, you'll want to call freshpaint.group
like so:
This will automatically attach the group key and group id to all events going forward.
There are a variety of ways sessions can be defined in Mixpanel. By default, Mixpanel will create events at query time based on how far apart events are for a specific user. This can sometimes lead to discrepancies between Freshpaint's data and Mixpanel's data. For example, if a user has two sessions according to Freshpaint, and an event is triggered and sent to Mixpanel in between those two sessions, this could be counted in Mixpanel as one session.
Another example of a discrepancy is if a user changes multiple devices around the same time, this would be counted as multiple sessions in Freshpaint, while it would only be counted as one in Mixpanel.
If you have any questions on which method is right for you, you can reach out to us at support@freshpaint.io.
freshpaint.identify is not identical to the "" event in Mixpanel. This call will always update profile values provided to it, but an Identify event will only show up in Mixpanel if the Mixpanel project is set to use the Original ID Merge API and the call includes a device_id and user_id to associate with each other.
When you call , Freshpaint will create or update a user profile in Mixpanel by calling Mixpanel's . Any user properties you pass in will be forwarded directly to Mixpanel.
In client-side connection mode, you may want to enable the Use Freshpaint ID for Device ID option in order to make the Mixpanel javascript web SDK use the Freshpaint device ID. This improves data consistency. You can read more about that .
When the Merge Anonymous option is enabled, Freshpaint will send a server-side identify call to Mixpanel using their endpoint. To set an anonymous id with an identify call, you can specify a value for the property.
When you call , Freshpaint will create or update a user profile in Mixpanel by sending a call to at: . To set an anonymous id with an identify call, you can specify a value for the property.
If you plan on using Mixpanel's feature, you should set up a group key in Mixpanel by clicking Add Group Key and entering in the name of the property you want to use (e.g. company_name). Then, copy the name of the group key you are using into Freshpaint as the Group Identifier Trait.
about setting Group profiles using the freshpaint.group()
method.
When enabled, Freshpaint will send your events to Mixpanel's . In Mixpanel, be sure to enable Data Residency under Project Settings > Data Residency. Make sure you've followed to set up EU data. This setting is not enabled by default.
This will send a Loaded a Page event to Mixpanel for all method calls. The Page call is transformed to Mixpanel events. This setting is not enabled by default.
When enabled, Mixpanel will track all events, regardless of if the browser has "Do Not Track" enabled. and how it relates to and policies. This setting is enabled by default.
This setting merges anonymous users with identified users when a is performed. This setting is enabled by default.
Set up transformations to modify your data before it's sent to your destination. Read more about transformations .
All events will be sent to Mixpanel from Freshpaint's servers. Your website will not send data directly to Mixpanel. Instead, your website and all other sources will send data to Freshpaint, which is translated then sent to Mixpanel. As mentioned above, such as React Native, Android, and iOS send data server-side.
about which connection mode to choose.
When you call , Freshpaint will create or update a group profile in Mixpanel. Unlike other destinations, Mixpanel supports multiple group keys. That means one user can belong to multiple groups and the group a user is counted towards changes depending on which group key you are using. As an example, for the company_name
group key, a user could belong to the group Google
, while at the same time for the department_name
group key, the user belongs to Software Engineering
. Due to Mixpanel's support of multiple groups per user, there are some slight differences when using Mixpanel group compared to other destinations.
Additionally, for events to be attributed to the right group, you'll need to pass in the group key as an event property with the group id as the value. This can be done by using . For this reason, we recommend after calling freshpaint.group
, you also make a call to freshpaint.addEventProperties
with the group key and group id like so:
In Freshpaint, sessions are terminated after 30 minutes of inactivity by default. You can read more about that .
There are multiple ways you can define sessions in Mixpanel. Since Mixpanel and Freshpaint define sessions differently, session count will not always match between the two tools. You can read more about how you can define sessions in Mixpanel and decide which method works best for your use cases.
Mixpanel considers events with the same event, time, distinct_id, and $insert_id
to be duplicates. Mixpanel will deduplicate based on these parameters. You can read more about that in Mixpanel's documentation.
For most events, Freshpaint sends each of these parameters to Mixpanel in order for deduplication to occur. If you are sending to Mixpanel, you would have to make sure these parameters were included in the event prior to sending to Mixpanel in order for deduplication to occur.
If you are sending data to Mixpanel with a , Freshpaint will send a fp_backfill_id
property with each event that can also be used for deduplication. If for some reason the data is duplicated during a backfill, the duplicated events can be ignored by filtering out this fp_backfill_id
value.