UserInfo
The UserInfo endpoint returns claims about the authenticated user. The claims returned depend on the scopes granted during authorization.
GET/oauth2/userinfoBearer Token
Returns claims about the authenticated user based on the granted scopes. Requires a valid access token.
Response
{
"sub": "user-uuid",
"name": "Jane Doe",
"email": "jane@example.com",
"email_verified": true,
"picture": "https://avatars.githubusercontent.com/u/12345"
}Scopes and Claims
| Scope | Claims Returned |
|---|---|
openid | sub |
profile | name, picture |
email | email, email_verified |
See Scopes & Claims for more details.