Hello, I would like to create an automation rule that, for each ticket create in a project, deletes a specific participant request.
Is that possible ?
Thanks in advance for help.
You can remove a specific request participant by using the JSON advanced field editing:
You'll just need the request participant's user id. If it's always the same user, you can just add it:
{"update": {
"Request participants": [
{
"remove": {"id":"123456789"}
}
]
}
}
But you can also use a smart value if needed, for example:
{"update": {
"Request participants": [
{
"remove": {"id":"{{issue.assignee.accountId}}"}
}
]
}
}
Hope this helps!
- Manon
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.