The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

Rally to Jira

shank ms
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 19, 2019

Hi, Am moving from rally to jira and currently doing it using csv files, is there any API or scripts that can be helpful to migrate, i have verified some third party tools but more interested in API, JSON, Python scripts.

Any suggestions will be really helpful, if some one has used the rally to jira connector it would be great to know about it, thank you.

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Edwin Kyalangalilwa
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
December 19, 2019

Hi @shank ms ,

It entails doing a search in Rally through API and turning that search into JSON.

And then using the response to create something similar to the attached JSON.

{ "projects": [{ "name": "Project", "key": "PRJ", "description": "Project Description", "versions": null, "components": null, "issues": [{ "description": "Demo Description", "status": "", "reporter": "", "labels": null, "issueType": "", "created": "0001-01-01T00:00:00Z", "externalId": "", "summary": "Demo Summary", "assignee": "", "history": [{ "author": "Demo Author", "created": "0001-01-01T00:00:00Z", "items": null }], "customFieldValues": null }, { "description": "Demo Description 2", "status": "", "reporter": "", "labels": null, "issueType": "", "created": "0001-01-01T00:00:00Z", "externalId": "", "summary": "Demo Summary 2", "assignee": "", "history": [{ "author": "Demo Author", "created": "2019-12-19T15:51:59.964708-07:00", "items": [{ "fieldType": "jira", "field": "Description", "fromString": "", "toString": "Description" }] }], "customFieldValues": null }] }], "users": { "name": "", "fullname": "", "email": "", "active": false }, "links": { "name": "", "sourceId": "", "destinationId": "" }}

So you can use for example

https://pypi.org/project/pyral/

Then you can import this JSON to cloud. Unfortunately I can't share the code we used at work.