User Data
Add names, emails, and other user information
feedback.identify also takes a second optional JSON argument containing a key/value pair of data that you'd like to associate with the given user.
Name and Email​
If the name or email keys are given they will be displayed instead of the UID in the UI. They can also be used in the search box to quickly find user sessions:
JavaScript
feedback.identify("123456", {
name: "John Smith",
email: "johnsmith@gmail.com",
});