Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,517
Community Members
 
Community Events
184
Community Groups

How to get Email address from a user account with Jira API

serge calderara
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Mar 12, 2021

Dear all,

I have run the following script from script runner 

The userAccountId is retrieved from a UserPicker field

def user = get('/rest/api/2/user/email?accountId='+ userAccountId)
.header('Content-Type', 'application/json')
.asObject(Map).body

return user

The idea is to retrieve the email address of the given Account ID.

What is wierd out of this call of the API is that in the return Json I have no email address key.
In an other hand if I go to the profile of that user, then I can see that its email is correctly set.

 

Any idea why I cannot retrive the Email adress from my User Picker field ?

3 answers

1 accepted

1 vote
Answer accepted
serge calderara
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Mar 12, 2021

From your Atlassian instance go to the email profile visibility setting :

https://id.atlassian.com/manage-profile/profile-and-visibility

Then at the bottom of the page from the Contact section, change your email visiblility to Anyone

I have a better idea to get email id. You can use the below REST request. In this way, you don't need to change the visibility. You can see the documentation here.rest api for user details.PNG

This is the response
rest api for user details response.PNG

0 votes
Juan Manuel Ibarra
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Mar 12, 2021

Hi, i think that the problem is:

Captura de Pantalla 2021-03-12 a la(s) 10.11.44.png

Only apps that meets the Guideline can access to this information

serge calderara
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Mar 12, 2021 • edited

@Juan Manuel Ibarra , as you can see first is that I am using the API version 2

I mange to find out the reason and it has nothing to do with the API but instead about the security and visibility parameters in the profile section

By changing Email visibility to anyone, the API return correctly the email address in the json response

regards

Like Juan Manuel Ibarra likes this

Suggest an answer

Log in or Sign up to answer