- After a user first registers
- After a user logs in
- When a user updates their info (for example, they change or add a new address)
- Upon loading any pages that are accessible by a logged in user (optional)
Identify Call
Example
Here’s a complete example of an identify call:Identities
The identify call specifies a visitor identity that you can reference across the visitor’s whole lifetime. **Every identify call must have a User ID or an Anonymous ID, depending on how much you know about the visitor in question.Anonymous ID
There are certain cases where you don’t actually know who the visitor is according to your database, but you still want to be able to tie them to traits, events, or page views. For example, you may not know who a user is when tracking newsletter signups or anonymous page views. In these cases, you should use an Anonymous ID. The Anonymous ID can be any pseudo-unique identifier. For example, on your servers you can use a session id. If you don’t have any readily available identifier, you can always generate a new random one - we recommend UUIDs. Note: Innkeepr’s libraries automatically use Anonymous IDs to keep track of users as they navigate around your website or app, so you don’t need to worry about them when using those libraries. Here’s an example of a JavaScript event for an anonymous user:User ID
User IDs are a more permanent and robust identifier, like a database ID. Since these IDs are consistent across a customer’s lifetime, identify calls should include a User ID as often as possible. A User ID is usually the unique identifier that you recognize a user by in your own database. For example, if you’re using MongoDB it might look something like507f191e810c19729de860ea.
We recommend using database IDs instead of simple email addresses or usernames, because database IDs never change. That guarantees that even if the user changes their email address, you can still recognize them as the same person in all of your analytics tools. And even better, you’ll be able to correlate analytics data with your own internal database.
Instead of using an email address or a username as a User ID, send them along as traits.