Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 JIRA REST API 获取分配给当前登录用户的问题列表,但我找不到任何有关如何执行此操作的文档。
我需要做什么才能将问题分配给当前用户?
您可以使用 jql 指定要接收的问题。在你的情况下rest/api/2/search?jql=assignee=currentuser()应该做的伎俩。
rest/api/2/search?jql=assignee=currentuser()
这是 REST api 文档的相关部分,这里是使用的 jql 函数的描述。