The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have seen a couple of posts, but am not getting a good answer to how I can find the accountId of the user. I know the user email address, so what I have been doing is following this link below:
https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-user-bulk-migration-get
I type in the email address as both the username and key and I get this back:
I even tried with the display name
[ { "username": "xxx@hotmail.com", "accountId": "unknown" }]
Why am I getting an unknown?
Thanks
Hello Chan,
Thank you for reaching out to Atlassian Community!
Testing using the details you provided, to be honest, I couldn't make the "Get account IDs" work, but the good thing is that there are two other options to get the account id.
The first option is to use the "Group and user picker" API that will return the information about the user using their email address.
curl --request GET \
--url 'https://domain.atlassian.net/rest/api/3/groupuserpicker?query=user@domain.com' \
--user 'admin@domain.com:A1b2345CdEfgHIJkLMn67O8Q' \
--header 'Accept: application/json'
The second option is to use REST API call below directly in the browser:
https://domain.atlassian.net/rest/api/latest/user/search?query=user@domain.com
Please, give it a try and let us know how it goes.
Regards,
Angélica
Wow... Thanks a lot Angélica. This is amazing.....worked like a charm!
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.
Great! Thanks Angélica. The documentation does not elaborate what the end point expects as query params. Was trying JQL for the whole time without result. Thanks again :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Does a similar solution exist for Confluence? I am attempting to use the /wiki/rest/api/user/bulk/migration endpoint to return accountIds from usernames, but I only get the same usernames returned to me that I passed in, with no accountIds.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is from the latest documentation:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.