Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×In Automation for JIRA you can use the Edit Issue Action to add a participant. You need to use the Advanced Field and specify the the user to add. The following JSON will work - simply substitute the customfield_id for the field in you system and the <username> with the user you want to add:
{ "update": { "customfield_10003": [ { "add": {"name": "<username>"} } ] } }
Here is an image of the fully configured rule:
Screen Shot 2016-09-14 at 10.40.12 AM.png
You also need to ensure that the "Automation for JIRA" has permission to edit the issue and and that the Request Participants field is on the edit screen.
I'm evaluating this plug-in now because I need to do exactly this but my automation isn't working.I checked the audit log and it ran but it didn't actually add the participant. Here's my rule. I updated the custom field ID and changed the name to the username I want to add. I wasn't sure what the "admin" part was for so I left it unchanged. Any idea why this isn't working? THX!
2016-09-14 15_44_01-Project automation - JIRA.png
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I got this rule fixed by changing it to "name":"<username>" WOO HOO!
Now I am trying to change another custom field that is a single select list. How do I figure out what to use in the json pair instead of "name" (that didn't work, I tried it already).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
NM, I added a new ticket with this request since it isn't the same as this question.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great to see you figured this one out. I will make the answer a little more specific.
Looks like Andreas sorted you out on the other issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What would the correct syntax be if you want to add multiple people to the participants list? I've got it working for one person, but can't quite get it for two people.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I have the exact same use case as described here.
I have set up the rule as below:
Advanced additional field.bmp
Also, i have found the custom field ID for 'request participant' by looking at the URL of the custom fieldcustom field request participants.bmp
Then I created a new request. The participant was not added.
Inside the audit log, I found the following error:
error.png
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just solved the problem myself. "Automation for JIRA" didn't have enough permission to edit issues. I used the JIRA 'permission helper' to help me navigate through this.
Automation for JIRA is a great tool! However, in my case, the error message was quite misleading. Maybe an idea for future enhancement?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Greg - great that you solved it. Totally agree with you on the error message! I have raised an issue - https://codebarrel.atlassian.net/browse/AUT-26
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.