JIRA REST API - 获取用户的项目角色/组

时间:2016-02-10 11:52:18

标签: jira jira-rest-api

用于列出用户的所有项目角色的REST调用是什么。

我可以通过以下方式获取群组: http://XXX/rest/api/2/user?username=XXX&expand=groups

我希望通过发送用户名而不是项目名称来获得项目角色结果。

1 个答案:

答案 0 :(得分:0)

我想这还没有。但是如果你能发布你的JIRA版本会很有帮助。

只考虑您可能感兴趣的内容:来自JIRA 6.1 docs。但您必须在此请求中定义权限。

https://developer.atlassian.com/static/rest/jira/6.1.html

/rest/api/2/user/permission/search?username&permissions&issueKey&projectKey&startAt&maxResults Returns a list of active users that match the search string and have all specified permissions for the project or issue. This resource can be accessed by users with ADMINISTER_PROJECT permission for the project or global ADMIN or SYSADMIN rights.

此调用的项目键是可选的。

如果这对您没有帮助: 您可以使用自己的插件扩展其余API。