You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello Community,
please, is there some easy way for Jira administrator how to obtain userKey (~ JIRAUSER12345) for some specific user?
I'm aware, that I can get this information:
But I wasn't able to find any straightforward way like get it from User management, click somewhere, use some URL. Am I missing something?
Thank you very much.
Hi @Hana Kučerová ,
Have you checked this article https://blog.developer.atlassian.com/important-gdpr-changes-in-jira-server/
also, check https://jira.atlassian.com/browse/JRASERVER-68189
Hi @Soumyadeep Mandal ,
so, according to the issue JRASERVER-68189, there is no Jira's UI way.
Probably the easist way is to use REST API and URL:
Thank you for the confirmation, I thought I'm missing something.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Go to Script Console in ScriptRunner and type in Script:
import com.atlassian.jira.component.ComponentAccessor;
ComponentAccessor.getUserManager().getUserByName("username");
Remember to change username
Click Run
The result is below
username(JIRAUSER01010)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.