Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Bulk delete users from Crucible Database

Matt Preall November 4, 2015

I accidentally imported my entire corporate LDAP user database into my Crucible-Fisheye instance, which makes user management extremely difficult.

 

I want to do a bulk delete of all users who have never actually used the system (less than 150 of the ~10k loaded users have ever actually used the system).  Is the best way to do this via SQL scripts?  I am in the process of creating a local group that contains everyone who has ever registered activity, so I could just delete all users not in that group, but I'm worried about linkages between tables and the best way to do it.

 

Any suggestions on how to get this done, I'm a SQL novice other than generating simple queries, so all help would be much appreciated. 

1 answer

0 votes
Maciej Swinarski
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
November 4, 2015

Hi Matt,

Please try to use the Admin Rest API:

To get a list of all users: 

GET /rest-service-fecru/admin/users 

More details: https://docs.atlassian.com/fisheye-crucible/latest/wadl/fecru.html#rest-service-fecru:admin:users

To get users in the active group:

GET /rest-service-fecru/admin/groups/{active group name}/users

More details: https://docs.atlassian.com/fisheye-crucible/latest/wadl/fecru.html#rest-service-fecru:admin:groups:name:users

Then you can delete all users which are not in the {active group name}  with:

DELETE /rest-service-fecru/admin/users/{user name}

More details: https://docs.atlassian.com/fisheye-crucible/latest/wadl/fecru.html#rest-service-fecru:admin:users:name

You may want to use the FeCru Admin REST python client when writing the script: https://bitbucket.org/atlassian/fecru-rest-examples/src/master/python/

mac

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events