Interface: UserData
Represents authenticated user data returned after successful authentication. This contains essential information about the currently logged-in user.
Example
// Getting current user data
window.mimeeqAuth.authorization.getUserData()
.then(userData => {
if (userData && !('name' in userData)) {
console.log(`Logged in as: ${userData.firstName} ${userData.lastName}`);
console.log(`Email: ${userData.email}`);
}
});
Properties
email
email:
string
User's email address, which is also the username used for sign-in. All communication with the user will be sent to this email.
firstName
firstName:
string
User's first name. This is displayed in the UI and used for personalization.
isBetaTester?
optional
isBetaTester:boolean
Indicates whether the user can access beta versions or environments.
When true
, the user can be given access to beta or pre-release features.
lastName
lastName:
string
User's last name. This is displayed in the UI and used for personalization.
phoneNumber?
optional
phoneNumber:string
User's phone number (if provided). This is optional and may be used for additional verification or communication.
userId
userId:
string
The unique identifier for the user. This ID is used across the system to identify the user.