OpenID Connect
User profile information
User information
GET/l/oauth2/userinfo
User profile information depending on the exact scopes available and requested. Default available scopes are openid for the sub (id), profile for the name and email for the email. This api call is commonly called after a successful token acquisition.
Request
Body
Response
json
Status: 200
{
"sub": 1591,
"name": "Doe (John)",
"family_name": "Doe",
"given_name": "John",
"email": "john@doe.com",
"email_verified": true
}