v3
latestOpenAPI 3.0.0©2023 All Rights Reserved2026-08-0659315450.0 KBoidc
Fetches the current UserInfo claims for the authorized user. This is the same fields returned by a id_token returns during authorization.
The claims returned depend on the granted scopes: profile claims (name, given_name, family_name) are only returned when the profile scope is granted, and email claims (email, email_verified) are only returned when the email scope is granted. The openid scope is always required.
get/v1/oidc/userinfo
Response
OK
Example response
{
"sub": "UAAAAAAAAA",
"name": "Alice Person",
"given_name": "Alice",
"family_name": "Person",
"email": "alice.person@example.com",
"email_verified": true
}