Configure

Identify users

Find a customer's sessions by email.

After a user logs in, call:

rc("identify", "user_123", { email: "jane@example.com" });

The first argument is a stable id from your system. The second is optional traits; email is the one the dashboard searches. Call it on every page load where the user is logged in, not just once at login, because sessions can start on any page.

Never send passwords, tokens, balances, or anything you would not want stored. Traits are stored as plain text on the session.

Search on the Sessions page matches the id, the email, or the anonymous visitor id.