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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.