Identify Users
How do I identify my users or customers using Zipy?
Identify a User
import com.zipy.zipyandroid.Zipy;// Associates the current session with a specific user identity
val userInfo = HashMap<String, Any>().apply {
put("email", "[email protected]")
put("firstName", "John")
put("lastName", "Doe")
put("customerName", "ACME Corp")
// Additional custom fields
put("role", "developer")
put("plan", "enterprise")
put("region", "US-West")
put("teamSize", 15)
put("lastLogin", System.currentTimeMillis())
}
// Call identify with a unique external ID and user info
Zipy.identify("user_${System.currentTimeMillis()}", userInfo)Anonymize a User

Custom Identifiers
Last updated