-
Suggestion
-
Resolution: Unresolved
-
None
-
-
Jira Software
Issue Summary
The user wants to get groupId in custome field(Multi-group picker), but can't get value.
refer to Find the smart value for a field, a Jira issue output is below.
customfield_100XX > 0 name "GroupA" groupId "xxxxx-yyyy-xxxxxxxx" self "https://domain.atlassian.net/rest/api/3/group?groupId=xxxxx-yyyy-xxxxxxxx"
But in automation,
{{issue.customfield_100XX.get(0).name}}
returns "GroupA", but
{{issue.customfield_100XX.get(0).groupId}}
returns no results.
How to reproduce
- create customfield Group picker(Multi-group picker) field(customfield_1000XX)
- add customfield_1000XX in a project
- admin.atlassain.com > Group > create GroupA
- in the project, create issue and set GroupA in customfield_1000XX
- create Automation
- schedule > set JQL (include created issue)
- add action > Log action > set
{{issue.customfield_100XX.get(0).name}},{{issue.customfield_100XX.get(0).groupid}}
- save automation and run
- you can see "GroupA", but no grpupID in Automation audit log.
- mentioned in
-
Page Loading...