You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
JIRA Version: 7.2.6
I want to add a group "ABC" and delete a group "XYZ" from the user roles in Project roles, of all the projects.
Since there are over 250 projects and every project has XYZ added as a group in project roles, I can't manually go in each project and delete that group and replace it with ABC.
How can I do it with some automation?
Regards,
Tayyab
I was able to solve this with REST calls.
I made a rest call and got all the projects.
From that I retrieved all the project ids.
Then I traversed through all the IDs, and made POST and DELETE requests for adding and deleting groups alternatively.
Following are the rest calls:
1. For getting all the projects
http://localhost:8080/rest/api/2/project
2. For Adding group.
http://localhost:8080/rest/api/2/project/'+projectId+'/role/'+projectRoleID+
3. For Deleting group.
http://localhost:8080/rest/api/2/project/'+projecId+'/role/projectRoleID?group=groupToDelete
HI Tayab
Delete call is not working
i'm getting http status code as no content and user is not deleted
any help?
Thanks in advance
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I need to add XYZ group into the ABC project with admin role, could you please suggest how to achive this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Might be kind of a wonky solution, but would this work for you?
I can't tell if ABC is a brand new group you're creating or an existing one, but if it's a brand new group, I guess you could just use the existing XYZ group if none of the existing members in XYZ need access to those 250+ projects anymore.
Also, I don't think you can change the name of a user group in JIRA once it's created, so you'd be stuck with "XYZ" - not sure if that would be an issue for you.
Thought I'd throw that our there, at least. Other than this, I can't think of anything that Nic didn't already say.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Only way I can think of doing this is with scripting or add-ons
(Well, ok, database hackery, but I simply cannot recommend that. Ever)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.