Retrieve user profile
How to retrieve a user's profile.
To get the profile of a user you need to call the function
getProfile
, which will return a promise including the user's information.🧙 If you only want to retrieve a user's profile
getProfile
is a perfect function, but if you also need to retrieve his wallets and even authenticate the user, then it is recommended to retrieve the user account.venlyConnect.api.getProfile()
const venlyConnect = new VenlyConnect('YOUR_CLIENT_ID');
venlyConnect.api.getProfile().then((profile) => {
console.log(`Users email, ${profile.email}, has been successfully executed!`);
});
{
"userId": "46c87fcb-77ed-4433-a425-814569ca1672",
"hasMasterPin": true,
"username": "[email protected]",
"email": "[email protected]",
"firstName": "Karel",
"lastName": "Striegel"
}
The function reference describes the different functions that are available in the Widget. For each function, you can find the signature, it's parameters, and possible options documented.
Last modified 1yr ago