🚀 JWT 3.0 is out 🚀 

The app was completely overhauled, and so was the documentation: Jira Workflow Toolbox (Server/Data Center) Home

The page you are viewing is still valid for all app versions prior to 3.0.

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

On this page



Features used to implement the example



Example: Parse Email adresses to watchers list

In this example email adresses of Jira users will be comma seperated entered in a text custom field. By these adresses the specific users should be added to the watchers list of the created issue.

For this the post function Copy parsed text to a field is needed.



Text to be parsed is: toString(textOnStringList(toStringList(%{10400}, ", "), toString(usersWithEmail(^%))))


Note that:

  • Before setting up the post function a custom text field is needed for storing the email adresses.
  • %{10400} is field code for a text custom field where the email adresses get stored. In your instance this code might be different


Once configured, the transition will look like this:


When now creating a new issue and adding the email adresses to the custom field when the create issue screen, they will be added as watchers.


(info) When adding the Jira usernames to another custom field a JWT text custom field can be used instead. The code line won't change and a post function is not needed.




Other examples of that function

Related Usage Examples