You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hey folks !
I am working with Zoho Flow to create automation in between some forms and a Jira board.
I'd to create a new automation but I am stuck when I am using multiple choices field in my form and try to import the data to Jira.
I don't want to waste any of your time about Zoho Flow, but my question was, do you guys see any issue in the call that my flow try to push to Jira.
The issue seems to be when the data is within an array and not a single string.
{ "Assignee": "", "Description": "", "Issue type": 10443, "EPOS MID": 123456789, "Features in pilot": [ 11013, 11016, 11017 ], "Reporter": "myemail@here.com", "TSYS MID": 123456, "Transaction types": [ 10981, 10983, 10985, 10987, 10989, 10991, 10993, 10995, 10996 ], "Rank": "", "Labels": "", "Administration Transaction types": [ 11004, 11005, 11006 ], "Project": "TPT", "Pilot Type": 11020, "Preferred Language": 11022, "Terminals in pilot": [ 11009, 11011 ], "Development": "", "Summary": "Pilot", "Merchant DBA": "Hotel Test", "Flagged": "" }
The error I get in debug is 'Unknown error, contact support'...
My field is a checkbox field in Jira / Issues type and all my choices are created and linked with their proper ID in my Zoho Form so it sends numeric. I also tried sending the string of each field instead of the ID, still not working.
From what I understand, as soon as the data is into brackets ([ aaa, bbb, ccc]) it does not import to Jira.
If I remove the multiple choices from my form, the data is not in array anymore and it works, the ticket is created successfully
{ "Assignee": "", "Description": "New Pilot", "Issue type": 10443, "EPOS MID": 123456, "Features in pilot": 11013, "Reporter": "reporterIDhere", "TSYS MID": 123456, "Transaction types": 10981, "Rank": "", "Labels": "", "Administration Transaction types": 11004, "Project": "TPT", "Pilot Type": 11020, "Preferred Language": 11022, "Terminals in pilot": 11007, "Development": "", "Summary": "Pilot ", "Merchant DBA": "Hotel Test", "Flagged": "" }
I am just trying to figure out if the issue is coming from Zoho Flow or from Jira itself.
Thank you !!!!
EDIT :
I've tested to input multiple choices by removing manually the brackets and it worked.
so "Transaction types": "10981,10982,10983" is working
but not "Transaction types": ["10981,10982,10983"],
{ "Assignee": "", "Description": "New Pilot", "Issue type": 10443, "EPOS MID": 34342234234, "Features in pilot": "", "Reporter": "343424324342432423", "TSYS MID": "", "Transaction types": "10981,10982,10983", "Rank": "", "Labels": "", "Administration Transaction types": 11004, "Project": "TPT", "Pilot Type": 11020, "Preferred Language": 11022, "Terminals in pilot": 11007, "Development": "", "Summary": "Pilot ", "Merchant DBA": "test", "Flagged": "" }
I don't know if it's something that could be handled by atlassian so support both with and without brackets.
I already have a ticket open with the Zoho Support, I'll see their answer.