Disable an RSA Authentication Manager user account using the Administration API
Originally Published: 2020-06-15
Article Number
Applies To
RSA Product/Service/Type: Authentication Manager SDK
Issue
This article explains how to disable an existing user.
Resolution
This sample code pattern can be extended to include adding a ModificationDTO for the PrincipalDTO.ENABLE_FLAG:
...
//disable user
mod = new ModificationDTO();
mod.setOperation(ModificationDTO.REPLACE_ATTRIBUTE);
mod.setName(PrincipalDTO.ENABLE_FLAG);
mod.setValues(new Object[] { false });
mods.add(mod); // add it to the list
...Related Articles
Unlock a User in the User Dashboard 14Number of Views Unlock a User 26Number of Views Cloud Administration Unlock User Tokencodes API 114Number of Views WTD: Information on Web Threat Detection API 7Number of Views Disable a User Account in the User Dashboard 7Number of Views
Trending Articles
Unable to attach a replica instance due to a configuration error when enabling replication for the RADIUS server for RSA A… RSA MFA Agent 2.3.6 for Microsoft Windows Installation and Administration Guide RSA Authentication Manager 8.7 SP2 Setup and Configuration Guide Troubleshooting RSA MFA Agent for Microsoft Windows How to manipulate imported RSA SecurID Software Token(s) on an iPhone or iPad device
Don't see what you're looking for?