Developers
The SDK surfaces a series of APIs to associate “attributes” with a user. Attributes can be any set of free-form keys and values. It’s important to understand the following before reading on:
All users are associated with a signed 64-bit integer called the mParticle ID (MPID). On the web, this is surfaced as a string due to the limitations of the Javascript number type. Note that this value may be negative. Many mParticle integrations can map the MPID as the external user id for the given integration. MPIDs are shared across browsers and devices depending on your IDSync strategy and usage of the IDSync API.
The SDK maintains a “current” user and will associate all events with the current user at the time that they occur. There are several ways to retrieve a reference to the current user object.
Query the SDK directly for the current user. Note that on first page load this may be null.
var currentUser = mParticle.Identity.getCurrentUser();
Whenever an IDSync API is invoked, the callback for a successful request will will be invoked with a reference to the new user object. See the IDSync page for more information. Note that depending on your IDSync strategy, the MPID (and therefore the current user) may not change for every IDSync API call, such as for new user registration (login) scenarios.
User attributes are free-form key-value pairs. The underlying mParticle events API only accepts three types of values: strings, lists, and the JSON null sentinel in the case of tags.
// Note: may return null if the SDK has yet to acquire a user via IDSync!
var currentUser = mParticle.Identity.getCurrentUser();
// Set user attributes associated with the user
currentUser.setUserAttribute("top_region","Europe");
// You can change the value of an existing attribute at any time
currentUser.setUserAttribute("top_region","North America");
// Associate a list of values with an attribute key
currentUser.setUserAttributeList("destinations", [
"Rome",
"San Juan",
"Denver"
]);
// Remove attribute -
// all attributes for a given user share the same key space,
// you cannot have lists, tags and regular attributes with the same key
currentUser.removeUserAttribute("top_region");
A tag is a label or category to which a user belongs. While the SDK sets a tag as a string, mParticle’s master data structure defines attributes as a map, so tags are stored with a null value. For example, when you set the "platinum_member"
tag on a user, the user profile will get the attribute "platinum_member": NULL
.
// Set tag
// Note: may return null if the SDK has yet to acquire a user via IDSync!
var currentUser = mParticle.Identity.getCurrentUser();
currentUser.setUserTag("platinum_member");
// Remove tag
currentUser.removeUserTag("platinum_member");
Below is a list of mParticle “reserved” user attribute keys. Several integrations use these keys for deterministic data mapping:
$Age
$FirstName
$LastName
$Gender
$Mobile
$Address
$City
$State
$Zip
$Country
Always refer to your organization’s data plan when instrumenting user or event attributes. Each unique attribute key becomes a data point in the mParticle user interface that can be filtered for each output, used to drive the calculation of an audience or become part of a custom mapping. This means that your choice of attribute keys can have a system-wide impact. For example, if you have a single attribute key per device that represents a unique user ID or a unique URL, and you have thousands of users, mParticle will see thousands of unique keys, even though you only create one per device.
Creating too many unique attribute keys can have several adverse effects:
You should avoid the following as attribute keys:
A gaming app has ten levels and you want to track which level each user has achieved. Rather than creating ten tags such “reachedLevel1”, “reachedLevel2”, it is better to create a single attribute “reachedLevel” and use the value as the level.
Capturing this data as a single attribute improves the performance of both your app and the mParticle dashboard by reducing the number of unique data points you need to manage. It’s also a much more useful data point. For example, you can easily create a single audience builder condition to target users within a range of levels reached.
An mParticle workspace can combine data from multiple platforms, for example it can show data from your web and android app. For this reason, you may wish to choose attribute names that you can keep consistent across all platforms for easier management. For example, if you call an attribute levelReached
in iOS, LevelReached
on Android, and level_reached
on web, mParticle will treat these as three separate attributes.
Several partner integrations expect custom keys and values associated with each user or device, known as integration attributes. These are similar to “custom flags” except rather than being specific to an event, they’re specific to a user or device. The most common example of this are partner-specific user or device IDs.
The web SDK will persist any integration attributes at the device-level (rather than user-level), and will include them with every event upload. You can set an integration attribute by specifying an integration ID as well as a key and value:
//update the partner ID and attribute key as necessary for your integration
var adobePartnerId = 11;
var adobeVisitorIdAttributeKey = "vid";
var integrationAttributes = {};
integrationAttributes[adobeVisitorIdAttributeKey] = "<Adobe Visitor ID>";
mParticle.setIntegrationAttribute(adobePartnerId, integrationAttributes);
Was this page helpful?