Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This will now fetch the field value from the API and put it into a multi-user field.

...

Add PF Multiuser Uncrypted to Jira User Picker

  1. Add a automation rule

  2. Select trigger, like Created, Updated or Commented

  3. Add a condition when to run the automation

  4. Add a Edit Issue action

  5. Enter the following body. Change the Approvers field to the field you want to add the users to and the Unenc multi user to the PF unecrypted user picker

    Code Block
    languagejson
    {
        "update": {
            "Approvers": [
    {{#Unenc multi user.accountIds}} {"add": {"accountId":"{{.}}"}}{{^last}},{{/}}{{/}}
    ]
        }
    }
  6. Click Save and publish

...