Find the JIRA User at the JIRA REST API Email Address

I am using the JIRA REST API to access JIRA from a third-party application.

I am trying to find if a user account exists in JIRA for a specific email address. The same thing works for the username, but not for the email address.

Could you let me know how to do this? I went through this documentation.

+6
source share
1 answer

According to the document you linked, the REST call

api/2/groupuserpicker 

Searches by username or email address.

 parameter type description ------------ ------- -------------------------------------------------------- query string A string used to search username, Name or e-mail address 

If it does not work with the email address, you should send a support request to Atlassian.

+2
source

All Articles