IdTokenResponse
{
"sub": "string",
"iss": "string",
"context": "string",
"username": "string",
"email": "string",
"domain": "string",
"iat": 0,
"exp": 0,
"aud": [
"string"
],
"acct": "string",
"context_name": "string",
"given_name": "string",
"family_name": "string",
"email_verified": false,
"auth_time": 0,
"group_names": [
"string"
],
"group_ids": [
"string"
]
}
The user on behalf of which the token was issued.
The issuer of the token (URL of Identity Service).
The context in which the token was issued.
The user's username.
The user's email.
The domain the user belongs to.
Timestamp, measured in number of seconds since 1/1/1970 UTC, indicating when the token was issued.
Timestamp, measured in number of seconds since 1/1/1970 UTC, indicating when the token will expire.
The list of audience(s). OAuth client(s) the token is issued to.
The user's account identifier, 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 name in which the token was issued.
The user's given name.
The user's family name.
True if the user's e-mail address has been verified; otherwise false.
Timestamp, measured in number of seconds since 1/1/1970 UTC, indicating when the user was originally authenticated.
Names of the groups the user belongs to.
Identifiers of the groups the user belongs to.