I want to get a list using api/3 of all users eligible of creating a ticket given a specific project but could not find an ideal way.
Would appreciate some help here
Hi @Dan Schtechel and welcome to the Community!
Is there any reason why you would want to do this (for a single project) using the API? Essentially, the steps required to figure this out, would be to:
If you want to find this information via the API, I'm quite sure you'd have to chain a series of API calls to fetch all pieces of information involved, e.g.
Also note that the create issues permission also requires the browse project permission. A user needs to be able to access a project before he/she can create issues in it.
Hope this helps!
It's a good thing that API calls require authentication. Said authentication is also applicable to the results a user can obtain from the Jira data inside the instance.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Dick ,
You can use the below rest api:
/rest/api/3/user/permission/search?permissions=CREATE_ISSUES&projectKey=YOUR-PROJECT-KEY
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.