How can I disable a user without deleting them?
-
I want to disable a user account, but I want to keep their information around.
-
You can use a 'soft delete'.
Whenever you delete a user with the API without using
hardDelete=true
, the user is not able to login, but will still be visible in the API and the management UI.See https://fusionauth.io/docs/v1/tech/apis/users/#delete-a-user for more.