Invalidate Access Token

Context

Developers have the ability to invalidate a JWT token on-command. This functionality provides greater control over session management and improves overall security.

Flow

  • Make a request to our new endpoint: POST /revoke_auth_token
  • Pass a body like so:
    {
      "token": "${jwt}"
    }
    
  • The response will be a "204 no context" on successful revoking of the JWT token.