From ec09bed4cf0cbad06fba6f146a65566970966b6b Mon Sep 17 00:00:00 2001 From: Spencer Witt <3409780+spwitt@users.noreply.github.com> Date: Fri, 30 Jan 2026 11:02:45 -0600 Subject: [PATCH] remove retrieveUserUsingJWT client method ENG-3720 --- src/main/python/fusionauth/fusionauth_client.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/main/python/fusionauth/fusionauth_client.py b/src/main/python/fusionauth/fusionauth_client.py index aa83e3d..a662896 100644 --- a/src/main/python/fusionauth/fusionauth_client.py +++ b/src/main/python/fusionauth/fusionauth_client.py @@ -4000,18 +4000,6 @@ def retrieve_user_recent_logins(self, user_id, offset, limit): .get() \ .go() - def retrieve_user_using_jwt(self, encoded_jwt): - """ - Retrieves the user for the given Id. This method does not use an API key, instead it uses a JSON Web Token (JWT) for authentication. - - Attributes: - encoded_jwt: The encoded JWT (access token). - """ - return self.start_anonymous().uri('/api/user') \ - .authorization("Bearer " + encoded_jwt) \ - .get() \ - .go() - def retrieve_version(self): """ Retrieves the FusionAuth version string.