Table of Contents |
---|
1. Introduction
Required Jira Role:
Status | ||||
---|---|---|---|---|
|
...
Owner: [Your Name] Last Modified: [Your Update Date
2. Integrating Issue Keys with Advanced Issue Selector
Required Jira Role:
Status | ||||
---|---|---|---|---|
|
2.1 To associate specific issue keys with the Advanced Issue Selector, follow the steps below:
For a singular issue, use the following format:
Code Block language none { "fields": { "customfield_XYZ": ["ABC-1"] } }
For multiple issues simultaneously:
Code Block { "fields": { "customfield_XYZ": ["ABC-1", "ABC-2"] } }
2.2 Augmenting Selected Issues
If you wish to include an additional issue without replacing the current selections in the Advanced Issue Selector, use:
Code Block |
---|
{ "fields": { "customfield_XYZ": [{#customfield_XYZ}"{.}",{/}"ABC-100"] } } |
2.3 Transferring Selections Between Fields:
To replicate selected issues from one field to another, employ the following structure:
Code Block |
---|
{ "fields": { "customfield_XYZ": [{#customfield_ABC}"{.}"{^end},{/}{/}] } } |
3. Utilizing Attributes from Selected Issues:
Required Jira Role:
Status | ||||
---|---|---|---|---|
|
...