Forums

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

Automation for Jira: JSON copy People custom field

Daniel Boling February 7, 2022

We would like to copy a People custom field, Collaborators, when cloning an issue using Automation for Jira.

 

Referencing the documentation below, we created the following JQL:

{
"fields": {
"Story point estimate": {{triggerIssue.Story point estimate}},
"Collaborators": {{triggerIssue.Collaborators.accountId.asJsonObjectArray("id")}}
}
}

 

The Story point estimate custom field sets as expected.  The Collaborators field remains blank, although the Trigger Issue has multiple Jira Accounts selected.  The Audit Log reveals a Status of SUCCESS.

 

We continued testing by issuing the following comment:

{{triggerIssue.Collaborators}}
{{triggerIssue.Collaborators.accountId.asJsonObjectArray("id")}}

 

The text returned from the fist line contains the Collaborator account detail, as expected.  However, the text from the second line is "[]" (without quotes.  That leads us to believe the JQL for the second line is initializing an empty array.

What is the proper JQL required to set the new People custom field from the data in the trigger Issue?  Thank you!

 


Automation Screenshot

Screenshot 2022-02-07 130153.png

 


References

3 answers

1 accepted

2 votes
Answer accepted
Bill Sheboy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 7, 2022 edited

Hi @Daniel Boling 

In the JSON you provided:

{
"fields": {
"Story point estimate": {{triggerIssue.Story point estimate}},
"Collaborators": {{triggerIssue.Collaborators.accountId.asJsonObjectArray("id")}}
}
}

You are both referencing the "accountId" field (which produces a CSV list of values) and then trying to look for the "id" field, so it is finding nothing: the keys are all gone at that point.

One way to do this is to parse on "accountId", and then replace() with the "id" key which the Collaborators field probably wants.  Perhaps try this:

{
"fields": {
"Story point estimate": {{triggerIssue.Story point estimate}},
"Collaborators": {{triggerIssue.Collaborators.asJsonObjectArray("accountId").replace("accountId", "id")}}
}
}

 

Kind regards,
Bill

Daniel Boling February 9, 2022

That worked!  Thank you, @Bill Sheboy for the fix and the additional explanation so that we can better understand the process.

Like • Bill Sheboy likes this
1 vote
Nic Thiele
Contributor
August 30, 2023

For anyone else pulling their hair out with this failing when the object you're trying to copy is null I had to do a more complex comparison as isEmpty did not work for me (Jira Server?).

Additional fields:
{
"fields": {
"customfield_13421": {{#if(equals(triggerIssue.customfield_13421, null))}}null{{/}}{{triggerIssue.customfield_13421.asJsonObjectArray("id")}}
}
}
0 votes
Pramodh M
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 7, 2022

Hi @Daniel Boling 

Not Sure why this logic

You could follow just editing the cloned issue right there, why branching and all!!

MU.png

Let me know if this works for you

Thanks

Daniel Boling February 7, 2022

Thanks, @Pramodh M.  The branch was required for a previous iteration of the automation.  I removed the branch, as it is redundant for this test.

We are unable to select this, or any, custom field from the Choose fields to set... dropdown menu:

 

Screenshot 2022-02-07 142054.png


 

I moved the JQL to the Clone Issue action and am getting the same result.  

 

Screenshot 2022-02-07 144715.png

Suggest an answer

Log in or Sign up to answer
TAGS
atlassian, atlassian community, loom ai, atlassian loom ai, loom, atlassian ai, record recaps of meetings, meeting recaps, loom recaps, share meeting recaps,

Loom’s guide to great meetings 📹

Join us to learn how your team can stay fully engaged in meetings without worrying about writing everything down. Dive into Loom's newest feature, Loom AI for meetings, which automatically takes notes and tracks action items.

Register today!
AUG Leaders

Atlassian Community Events