Hey all!
So, i am trying to create a workflow that allows users to submit product ideas via an external form that then creates a new Idea in Jira Product Discovery (JPD) on submission of the form via a webhook.
So far, I have an automation that maps and brings in the values on submission to create a new idea.
The PROBLEM comes in with multi-select fields... If a users selects only one value in the multi-select and submits their form, it populates in the newly created JPD idea properly. If they select more than one value and submit, it does not. It's driving me nuts, as it should be pretty straight forward.
Thanks so much for the help in advance!
Details below:
My automation stack is as follows:
Results:
Notes:
Formstack Payload Detail:
{ "FormID": "123456", "UniqueID": "123456789", "Summary": { "value": "This is a summary", "type": "text" }, "Description": { "value": "This is a description", "type": "text" }, "Brand": { "value": [ "Brand 1",
"Brand 2",
"Brand 3" ], "type": "checkbox" } }
Jira Automation Detail:
Jira Audit Log Detail:
Ok, I found A solve, but I'm not convinced at all that it is the best solve.
Basically, I put in a Smart Value list.get(index) for each possible selection in the Multi-Select field.
The automation will then try to grab the first, second,...eighth...X values, if a value is null, it just returns a null/blank. For Example:
PROS:
CONS:
SETUP/STEPS:
CREATE ISSUE AUTOMATION:
RESULTS:
RESOURCES:
First time answering something, even if it's my own, but I hope it helps someone out there! haha
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.