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
Hello fellow Codebarrel users,
I have an issue trying to access the custom user key / value that i've added to User Properties in JIRA.
I have a key called <slackId> and the value (@someSlackName), but unable to access this value from the Automation for JIRA tool.
I have researched all the possible solutions mentioned here:
https://codebarrel.atlassian.net/browse/AUT-83
and here:
But could not get it to work.
https://<My JIRA Cloud>.atlassian.net/rest/api/2/user/properties/slackId?username=adminUserName -> would give me a 404 message
The way you set the properties:
The user properties that can be set via the user profile page and the user properties exposed in the JIRA REST API are actually two completely different storage mechanisms, which explains why user properties set from EditUserProperties.jspa are not returned when you call the REST API.
Any help will be greatly appreciated.
Aleks is spot on. The properties set through the UI are considered a legacy feature.
In Server these can be accessed via:
{{issue.reporter.legacyPropeties.slackId}}
Unfortunately Jira deosn't expose these via REST so we can't access them in Cloud.
The new way to do this is to set the User entity property. The best docs to follow are:
This is the curl command you would use:
curl -X PUT -H "Content-type: application/json" https://<My JIRA Cloud>.atlassian.net/rest/api/2/user/properties/slackId?username=adminUserName -d '"<the slack id"'
(You will need to ensure that you authenticate the request)
You can also store JSON objects if you need more rich information stored.
You can the access it via:
{{issue.reporter.properties.slackId}}
There is also an add-on provided by Atlassian labs that allows you edit the entity properties in the UI - https://marketplace.atlassian.com/plugins/com.atlassian.connect.entity-property-tool.prod/cloud/overview
Hope this helps.
Cheers,
Nick
Thank you Nick, your answer really helped me to find the solution.
Much appreciated.
Greg.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As of today, the Entity Property Tool mentioned above does not work for accessing User Entity data in Jira Cloud.
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.