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: 

Can we import history to jira from CSV?

Sunil kumar
October 18, 2021

We are actually migrating the data from HPQC to Jira and we want to import the Audit log or History from HPQC to jira.

Is their any possibility to import history? 

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

3 votes
Answer accepted
Manon Soubies-Camy
Community Champion
October 18, 2021

Hi @Sunil kumar,

The only way to import issue history is through JSON import, e.g.:

"history" : [
                        {
                            "author" : "alice",
                            "created": "2012-08-31T15:59:02.161+0100",
                            "items": [
                                {
                                    "fieldType" : "jira",
                                    "field" : "status",
                                    "from" : "1",
                                    "fromString" : "Open",
                                    "to" : "5",
                                    "toString" : "Resolved"
                                }
                            ]
                        }
                    ],

See related documentation.

Hope this helps,

- Manon