Hey! How can I add people from a specific Jira group to the ticket as "Request Participants"?
Right now when I want to add users as "Request Participants" I use advanced edit in Automation to add users like this (see below). But I have a group, in which group members can change dynamically. How can I add the whole group (i.e. users of this group) to the ticket?
{
"update": {
"Request participants": [
{
"add": {
"id": "{{someVariable1}}"
}
},
{
"add": {
"id": "{{someVariable1}}"
}
},
{
"add": {
"id": "xxxxx"
}
},
{
"add": {
"id": "yyyyy"
}
},
{
"add": {
"id": "zzzz"
}
}
}
]
}
}