IdTokenResponse

IdTokenResponse
IdTokenResponse
JSON Example
{
    "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"
    ]
}
string
sub
Optional

The user on behalf of which the token was issued.

string
iss
Optional

The issuer of the token (URL of Identity Service).

string
context
Optional

The context in which the token was issued.

string
username
Optional

The user's username.

string
email
Optional

The user's email.

string
domain
Optional

The domain the user belongs to.

integer As int64 As int64
iat
Optional

Timestamp, measured in number of seconds since 1/1/1970 UTC, indicating when the token was issued.

integer As int64 As int64
exp
Optional

Timestamp, measured in number of seconds since 1/1/1970 UTC, indicating when the token will expire.

array of string
aud
Optional

The list of audience(s). OAuth client(s) the token is issued to.

string
acct
Optional

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.

string
context_name
Optional

The context name in which the token was issued.

string
given_name
Optional

The user's given name.

string
family_name
Optional

The user's family name.

boolean
email_verified
Optional

True if the user's e-mail address has been verified; otherwise false.

integer As int64 As int64
auth_time
Optional

Timestamp, measured in number of seconds since 1/1/1970 UTC, indicating when the user was originally authenticated.

array of string
group_names
Optional

Names of the groups the user belongs to.

array of string
group_ids
Optional

Identifiers of the groups the user belongs to.

Returned By