From ff87d7876603b4033d03397f775de1f16abb7da7 Mon Sep 17 00:00:00 2001 From: Spencer Witt <3409780+spwitt@users.noreply.github.com> Date: Fri, 30 Jan 2026 11:02:46 -0600 Subject: [PATCH] remove retrieveUserUsingJWT client method ENG-3720 --- lib/fusionauth/fusionauth_client.rb | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/lib/fusionauth/fusionauth_client.rb b/lib/fusionauth/fusionauth_client.rb index d8f425e..0ceff26 100644 --- a/lib/fusionauth/fusionauth_client.rb +++ b/lib/fusionauth/fusionauth_client.rb @@ -4005,18 +4005,6 @@ def retrieve_user_recent_logins(user_id, offset, limit) .go end - # - # 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. - # - # @param encoded_jwt [string] The encoded JWT (access token). - # @return [FusionAuth::ClientResponse] The ClientResponse object. - def retrieve_user_using_jwt(encoded_jwt) - startAnonymous.uri('/api/user') - .authorization('Bearer ' + encoded_jwt) - .get - .go - end - # # Retrieves the FusionAuth version string. #