Forums

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

Using ConfiForms to set multiple value in a custom Jira field

Md Zahidul Haque September 26, 2024

Hello, looking for a way to insert multiple values in one Jira custom field.

The Jira custom field has TWO values, I am able to insert the first one, not sure how I can insert the child value. I did following 

the custom fields details is like below--

 { "id": "customfield_30000", "name": "Task/Type", "custom": true, "orderable": true, "navigable": true, "searchable": true, "clauseNames": [ "cf[30000]", "Task/Type" ], "schema": { "type": "option-with-child", "custom": "com.atlassian.jira.plugin.system.customfieldtypes:cascadingselect", "customId": 30000 } },

 

and the Jira ticket look like below--

JIRA_TICKET.png

Has the fist value of "Release and Deploy" and Child value as "Build"

 

For the first_value of Task/Type I am doing--

tasktype1.png

AND in IFTTT integration rule

 

"customfield_30000":{ "value": "[entry.TaskType.escapeJSON]},

 

How I can insert second value (child value as entry.TaskTypeChild  ) in that customfield_30000. What will be IFTTT integration rule?

 

Thanks in advance.

1 answer

0 votes
Alex Medved _ConfiForms_
Community Champion
September 26, 2024

Hi @Md Zahidul Haque 

Are you talking about setting the values for the cascading field in Jira?

Alex

Md Zahidul Haque September 26, 2024

Yes Alex.

Alex Medved _ConfiForms_
Community Champion
September 26, 2024
Md Zahidul Haque September 26, 2024

Thanks Alex, that helped. able to do it with below --

 

"customfield_30000":{ "value": "[entry.TaskType.escapeJSON]", "child": { "value": "[entry.TaskType2.escapeJSON]" } },  

 

 

Thanks a lot.

Suggest an answer

Log in or Sign up to answer