Get Projects according to a specific Username

Arshdeep Singh July 29, 2013

I am currently making a REST call to get projects with admin credentials. I have another Jira Username for which i have to get projects. Is there any way that i will get only those projects on which this user is having permissions.

1 answer

1 accepted

1 vote
Answer accepted
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 29, 2013

I don't think REST exposes that information, because it's not a simple direct relationship.

Given a project, you'd need to read the list of people and groups in roles, then expand the groups out to people, then read the permission scheme to work out if your user matches the rules for access. You also need to think about what "access" means (just "I can see issue", or something else?), and how to handle the dynamic roles like assignee and reporter etc.

However, REST respects the permissions of the users internally, so if your rule is "person must have browse rights", then your normal user trying to use REST will only see the projects that they see when they use the UI.

Suggest an answer

Log in or Sign up to answer