User info endpoint
GET/realms/:realmId/protocol/openid-connect/userinfo
The UserInfo endpoint returns claims about the end-user using the access token obtained through any of the OIDC authentication flows.
Request
Path Parameters
realmId stringrequired
The realm's id
Responses
- 200
- 401
- 404
OK
- application/json
- Schema
- Example (from schema)
Schema
email string
email_verified boolean
family_name string
given_name string
name string
preferred_username string
realm string
sub string
{
"email": "string",
"email_verified": true,
"family_name": "string",
"given_name": "string",
"name": "string",
"preferred_username": "string",
"realm": "string",
"sub": "string"
}
Unauthorized client
Not Found
Loading...