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

3 votes
Answer accepted
Manon Soubies-Camy _Modus Create_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
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

Suggest an answer

Log in or Sign up to answer