OidcUserInfoDto
OpenID Connect (OIDC) user information.
{
"acct": "string",
"context": "string",
"context_name": "string",
"domain": "string",
"email": "string",
"email_verified": false,
"family_name": "string",
"given_name": "string",
"group_ids": [
"string"
],
"group_names": [
"string"
],
"sub": "string",
"username": "string"
}
The identifier of the user, configured to log in to the Identity provider. The acct claim can be a combination of the user's username and domain in URLEncoded(username)@domain format or the user's email or the UPN of the user.
The context identifier in which the token was issued.
The context name (equals to CSP organization ID) in which the token was issued.
The identity provider (IdP) domain of the user.
The email address of the user.
True if the user's e-mail address has been verified.
The family name of the user.
The 'given' name of the user.
Group ids the user belongs to. Property will be returned only if the client registered with 'group_ids' scope.
Group names the user belongs to. Property will be returned only if the client registered with 'group_names' scope.
The user on behalf of which the token was issued.
The username of the user.