AccessTokenDto

AccessTokenDto
AccessTokenDto

The access token represents the authorization of a specific application to access specific parts of a user's data.

JSON Example
{
    "access_token": "string",
    "expires_in": 0,
    "id_token": "string",
    "refresh_token": "string",
    "scope": "string",
    "token_type": "string"
}
string
access_token
Optional

The access token. This is a JWT token that grants access to resources.

integer As int64 As int64
expires_in
Optional

Access token expiration in seconds.

string
id_token
Optional

The ID Token is a signed JWT token returned from the authorization server and contains the user's profile information, including the domain of the identity provider. This domain is used to obtain the identity provider URL. This token is used for optimization so the application can know the identity of the user, without having to make any additional network requests. This token can be generated via the Authorization Code flow only.

string
refresh_token
Optional

The value of the Refresh token.

string
scope
Optional

The scope of access needed for the token

string
token_type
Optional

The type of the token.