...
Only authenticated user with a valid access token can perform logout process.
Logout process terminates current access token for user and client as well as refresh token.
Specification
Validations
Authorization
Verify the validity of the access token
in case of error - return 401 (“Invalid access token”)
Verify that token is not expired
in case of error - return 401 (“Invalid access token”)
...