Create ticket to Jira from an import email

0
Hi all, I have a question about the following: For my app, i want to create Jira tickets with just one click on the button from the grid. This grid shows all e-mails from a server, so these are imported. I want to create a ticket in Jira based on this email. Has somebody experience with this? How should my microflow look like? I guess that there has to be a mapping somewhere as well. Thanks already! 
asked
1 answers
1

Hello Patrick,

Have you looked yet at the JIRA API? https://developer.atlassian.com/server/jira/platform/jira-rest-api-examples/ 

It seems pretty straightforward to create an issue via an http request, so perhaps you can build a microflow that’s executed when you click the button, which will send the relevant data from your email object and create the issue on JIRA.

You can use the Call REST activity from your microflow, as described here: https://docs.mendix.com/refguide6/call-rest-action#general

Hope this helps!

answered