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.
I want to assign a user list to a multi user picker custom field
The size and content of the list is undefined
/!\ The problem is that the value of the custom field is overwritten and not added at each iteration
So I want the list of all my users in my custom field without knowing the content and the size of the list
customfield_10226 is my custom field multi user picker
listUser.each{ user ->
def update = put('/rest/api/2/issue/' + issue.key)
.header('Content-Type', 'application/json')
.body([
fields:[
customfield_10226:[[accountId : user]]
]
])
.asString()
}
Hello @Aymeric Goujon
This question gets asked regularly. It's not possible to insert / add one or more new values somewhere into a set of existing values in a user picker custom field. That's not how the REST API works.
You need to:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.