i want to export my issues which having attachments to CSV formate
can any one help me with this
Hi @Jyotshna Naidu ,
Using Jira Command Line Interface (CLI), you can export the attachment list from all issues in a CSV file with the below action:
jira --action runFromIssueList --jql "project = TEST AND issuetype = Story"
--common " --action getAttachmentList --issue @issue@ --file attachlist.csv
--append" --server http://localhost:8080/ --user <username> --password <password>
--outputFormat 999
Please modify the Jql, server, username, and password in the above action accordingly.
Thanks,
Reshma
Hi @Reshma Begum {Appfire} ,
Thanku for you help
But the thing is we cant download any plugin now bcoz license got expired we are moving to other instance
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Then what i can do to export my issue with attachment to another instance in CSV format only
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Run this JQL query to find those issues that have attachments:
attachments is not empty
Then export the resulted issue list to CSV with the built-in feature.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanku for you help,
If i am running JQL query in jira server and exporting the CSV file can i import this file in another instance JSM instance will i get attachments, there?
Because here in CSV the attachment path will be my Jira server path
will this work on JSM r should we need to copy and dump the attachment file to JSM .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No, I don't think so.
You should not use the export-import CSV process to migrate attachments...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Aron Gombas _Midori_
Then what i can do to export my issue with attachment to another instance in CSV format only
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would follow the official guide published by Atlassian:
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.