Hallo everybody!
What I'm trying with Automation:
WHEN a Value Changed (I add a second component)
THEN add a definied Person (Mark) to a User Picker (Multi)
But: The 'Edit Issue' Action overrides existing Users in this field. I only want to have to add an additonal User (if the User is not already there). At the moment I have only one user there.
How an I achieve this?
Best,
Hannes
Hi @Hannes ,
I was able to make it work using Additional fields section in Edit issue action.
xxxxx ... id of you CAB Advisors custom field
yyyyy ... account id of your user
{
"update": {
"customfield_xxxxx" : [
{
"add": {
"accountId" : "yyyyy"
}
}
]
}
}
Maybe you can also create user picker custom field and store your user there. Then you should be able to copy the user from this custom field and add him to existing ones.
Hi @Hana Kučerová ,
I need to add assignee and reporter into custom field Cooperators (User Picker Multi).
Do you know what should JSON look like for Additional fields?
Thanks,
Martin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've found solution myself
{
"update": {
"customfield_10055" : [
{
"add": { "accountId" : "{{assignee.accountId}}" }
},
{
"add": { "accountId" : "{{reporter.accountId}}" }
}
]
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hy unfortunaly is doesnt works for me...
I'm trying to add an assignee of a issue in the request participant of an linked issue but I can't succeed.
Here is my additional fields configuration :
{
"update":{
"Request participants": [{
"add" : { "accountId" : "{{triggerIssue.assignee.accountId}}" }
}]
}
}
When i log it , i got the assigne id "JIRAUSERXXXXX" but i also get an error on the edit issue step : "Error editing issue TICKETNUMBER(null)
Can you help me, i'm running out of solution ( more than 185 tests....)
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.
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.