Get User Details with Othent
Getting details of user logged in using Othent
The userDetails
function returns details of the logged in user associated with their user account.
Ensure you have pop-ups enabled in your browser for the URL you'll be using this function in.
Basic Syntax
The function is called as follows:
Input Parameters
apiId: string
: Use of any Othent function requires anapiId
which can be fetched from othent.io. Towards the bottom of the linked page, theGet your API ID
button provides the same.
Returned Data
The function call returns the following data:
contract_id: string
: Thecontract_id
is the wallet address associated with a user's email account, provided to the user at the time of registration with Othent.given_name: string
: Thegiven_name
is the connected user's first name associated with the email account.family_name: string
: Thefamily_name
is the connected user's last name associated with the email account.nickname: string
: Thenickname
is the connected user's initials associated with the email account.name: string
: Thename
is the connected user's given_name and family_name joined together.picture: string
: Thepicture
is the connected user's profile picture associated with the email account.locale: string
: Thelocale
is the connected user's preferred language associated with the email account.email: string
: Theemail
is the connected user's email address.email_verified: string
: Theemail_verified
holds information the confirmation status of the email.sub: string
: Thesub
is a unique id for Othent's reference.success: string
(optional) : Thesuccess
status of function call.message: string
(optional) : Anymessage
to be returned with function call.
Last updated