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.
We use to help manage a lot of dates and other details from different companies, manly being logistic provider, these companies send info in EDI format and there can be many changes which we entering into Jira manually but would if we could get a EDI set up i beleive this info could be automatically uploaded without data entry. Let me know if you have any insight about this and setting it up.
Any system can talk to Jira over its REST API - see https://developer.atlassian.com/cloud/jira/platform/rest/v3/
Do you know jira could can take data from XML, ANSI and Edifact? Or are there any add ins in the marketplace that help with this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It can take data from anywhere, if you can translate them into appropriate REST calls (or API calls if you were on Server/DC). It can directly import XML to some extent too.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
how would i go about trying to set up a direct import of an XML file? Is this something that can be set up to run automatically or is it something that we would have to manually translate each time?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The XML import on Cloud is limited to data exported to XML from a system with a perfect understanding of Jira XML exports (i.e. another Jira Cloud or recent Server version)
It also overwrites your entire site.
So I don't think it's what you are looking for. A regular or dynamic import probably needs to use REST calls to poke data in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So if the site we are getting the data from doesn’t do API Rest and jira doesn’t do XML, ANSI and Edifact The only option we would have is to find an add-on that can convert those formats to the API format correct? Or am I misunderstanding how this works?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jira does do XML and ANSI, but it needs to be structured in a way it makes sense to Jira. Edifact is the wrong shape because it's not for issue tracking.
If your code can't do REST calls for some reason, then yes, you'll need to find something that can convert from your data format to something Jira can use.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you familiar with any add-ons that can convert the data? Or even what I would search for in looking for one?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've used XSLT to convert XML into CSV for imports in the past.
I'm not aware of any apps that do it directly inside Jira though (other than REST endpoints in Scriptrunner, which I think are only available to Server, and writing my own Server "importer" plugins)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.