Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Automation delete request particpant

Kevin Vancrutsen March 25, 2025

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.

1 answer

1 accepted

6 votes
Answer accepted
Manon Soubies-Camy
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 25, 2025

Hi @Kevin Vancrutsen,

You can remove a specific request participant by using the JSON advanced field editing:

json-remove-participant.png

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

Kevin Vancrutsen March 25, 2025

Hey Manon,

It works !

Thanks a lot for help

Like Manon Soubies-Camy likes this

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
PREMIUM
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events