This method allows users to retrieve the whole token info
GET
/tokens/token_info
curl \
-X GET https://api.h2olinks.com/tokens/token_info \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"result": "Token Obtained",
"token": {
"exp": "string",
"iat": "string",
"sub": "string"
}
}
Response examples (401)
{
"access_denied": "string",
"http_ressponse": 42
}