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.
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.