Alias
The alias call lets you merge different identities of a known user.
alias is an advanced method that lets you change the tracked user's ID explicitly. This method is useful when managing identities for some of the downstream destinations. The following destinations support the alias
call:
- MoEngage
- Kissmetrics
- Amplitude (only supported by the JavaScript SDK via Cloud Mode)
- Mixpanel
Sample Payload
A sample payload of an alias call with most of the Common Fields removed is as shown:
{ "type": "alias", "previousId": "name@surname.com", "userId": "12345"}The corresponding event that generates the above payload via the JavaScript SDK is as shown:
rudderanalytics.alias("12345")The RudderStack SDK automatically passes the user's
anonymousId aspreviousId in the payload, as seen above.When instrumenting a website with the JavaScript SDK, making the alias call via the client-side is important as the anonymousId is generated via the browser. Similarly, if you're using a server-side SDK, the aliascall must be made from the server-side as the session ID is set as the anonymousId.
Page Fields
Apart from the Common Fields, the alias call accepts the following fields:
| Field | Type | Presence | Description |
|---|---|---|---|
previousId | String | Required | The user's previous identifier. |
userId | Object | Optional (if | The user's identifier in your database. Either of |
userId vs previousId
- The
previousIdattribute refers to the previous user identifier. It could be either:- An
anonymousIdassigned to the user (by the browser if the user is a new visitor or has not logged in yet, or the session ID if you're using a server-side SDK). - A previously set
userIdto identify the user via theidentifycall.
- An
- The
userIdis the user's new identity or an existing identity that you want to merge withpreviousId.
Contact Us
For more information on any section covered in this doc, you can contact us or start a conversation on our Slack channel.