Aller au contenu

UserInfo Endpoint

GET
/oidc/userinfo
curl --request GET \
--url https://auth.timetonic.com/oidc/userinfo \
--header 'Authorization: Bearer <token>'

Returns claims about the authenticated user based on granted scopes.

User claims

Media typeapplication/json
object
sub
string
name
string
email
string
email_verified
boolean
Examplegenerated
{
"sub": "example",
"name": "example",
"email": "example",
"email_verified": true
}

Invalid or expired bearer token