Retrieve oAuth oAuth 2.0 claims
POST/auth/v1/oauth2/userinfo
Retrieve the oAuth 2.0 claims for the user who was issued the access token that is presented in this request body.
Request
- application/x-www-form-urlencoded
Body
required
access_token stringrequired
Access token for which you want to retrieve claims about the end-user.
Responses
- 200
- 400
- 401
Returns oAuth 2.0 claims about the authenticated end-user.
- application/json
- Schema
- Example (from schema)
Schema
sub string
Subject - Identifier for the user at the Issuer
name string
Full name in displayable form including all name parts, possibly including titles and suffixes
given_name string
Given name(s) or first name(s)
family_name string
Surname(s) or last name(s)
email string
e-mail address
{
"sub": "string",
"name": "string",
"given_name": "string",
"family_name": "string",
"email": "string"
}
Invalid Request
Invalid Token
Loading...