ID Token

The ID Token is a security token that contains Claims about the authentication of an End-User by an Authorization Server when using a Client, and potentially other requested Claims. The ID Token is represented as a JSON Web Token (JWT).

Sample JSON Response with ID Token:

{
        "access_token":"eyJhbGciOiJSUzIi.......3gZthv7Y",
        "token_type":"Bearer",
        "expires_in":599,
        "scope":"PRIVOLOCK TRUST openid",
        "id_token":"eyJhbGciOiJSUzIi.......m5cr2cNNk"
}