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 have an automation that checks for updates on a series of fields. I would like to append the initiator of the field changes to a multi-select user picker called Transport Approvers.
I wanted to use this Transport Approvers field to capture all users who initiate the field changes. However when I run the automation, and test with different users, I can only write over the previous user in the Transport Approvers multi-select field only allows me to write over the previous value, not append an additional one to the field.
Is there a way this can be done? Thanks in advance.
Using the advanced option, I added this code snippet and it works perfectly:
{ "update": { "MultiUserPicker": [{ "add": {"accountId":"{{initiator.accountId}}"} }] } }
Where "MultiUserPicker" is the name of my field.
This doesn't work for me. I have a multi-user field called "Contributors".
My json is identical to yours:
{
"update": {
"Contributors" : [{
"add": {"accountId":"{{initiator.accountId}}"}
}]
}
}
but I get this error
Additional fields contains invalid field(s) in 'update' or 'fields' section: Contributors
Any ideas on what am I doing wrong?
KR, Ilia
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If your field is a custom field, you most likely need to use its id like "customfield_12345"
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.