Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,554,892
Community Members
 
Community Events
184
Community Groups

Assign a user list to a multi user picker custom field (number of user undefined)

Aymeric Goujon
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
Apr 21, 2023

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()
}

1 answer

1 accepted

0 votes
Answer accepted
David Bakkers
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Apr 21, 2023 • edited

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:

  1. GET the current set of values from the field (usually into an array in your code)
  2. In your code, add the new value(s) in the position(s) you want in the array
  3. PUT / POST the new values into the field, in the order you have them in the array, to overwrite the old set of values.

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
PERMISSIONS LEVEL
Site Admin
TAGS
AUG Leaders

Atlassian Community Events