Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

add group to all permission scheme

fateme ghasemi
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 12, 2025

How do I add a group to all permission schemes for browse projects in Jira Server version 9.12.2?

2 answers

3 votes
Walter Buggenhout
Community Champion
July 12, 2025

Hi @fateme ghasemi and welcome to the Community!

Through the Jira UI, you'll need to modify each permission scheme manually and set the permission as desired.

As an alternative, you could use the Jira Server REST API to update the permission programatically as well.

Search for "grant permission to group via jira data center rest api" to find more specific instructions.

Hope this helps!

2 votes
Piyush Annadate _ACE Pune_
Community Champion
July 12, 2025

Hello @fateme ghasemi ,
Welcome to the Community!

You may do this via REST API/Scripting as via UI that isn't possible in bulk.

You can do a below steps:
1. Fetch all the permission scheme
GET /rest/api/2/permissionscheme

2. Update permission scheme 
PUT /rest/api/2/permissionscheme/{schemeId}

Example:
{ "name": "Example permission scheme", "description": "description", "permissions": [ { "holder": { "type": "group", "parameter": "jira-developers" }, "permission": "ADMINISTER_PROJECTS" } ] }

Suggest an answer

Log in or Sign up to answer