We need to export or download attachments from a JIRA record for our automation product.
Is there a way to export directly form the JIRA server or a URL option?
We use Jenkins Automation build and want to be able to export our PDF's from JIRA.
Do we have to use command line plugin or is there an easier way to do it from a DOS prompt or Jenkins?
I saw the option to get the attachments from the JIRA_HOME but we need the same file name and do not want scripting work
Well, if you know the attachment ID, you can get its download URL using the
/rest/api/2/attachment/{id}
call from the JIRA REST API.
See here for more details: https://docs.atlassian.com/jira/REST/latest/#d2e168
Thanks. We will have to find a way for the Jenkins build server to read the html copy link address and use REST API. Have you been able to to automate retrieving the attachment ID from the Jira issue page?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Or simply use JJUPIN:
getAttachmentPath(key, attname) - http://confluence.kepler-rominfo.com/display/SIL/getAttachmentPath
&
system() - http://confluence.kepler-rominfo.com/display/SIL/system
attachments variable is predefined on the issue.
You will spare a lot of time :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Check the HTML code of the page. It is there. Even better, the download URL is there, as far as I see.
<li class="attachment-content" draggable="true" data-downloadurl="image/png:padding.png:https://jira.atlassian.com/secure/attachment/66083/padding.png">
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes we saw it. We were wondering if anyone had code/script to pick off the link via an automation product
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Use the JIRA PDF View Plugin!
It:
More about embedding JIRA issue attachments to PDF documents »
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there a way to only get the attachment without having the PDF and imbedded attachment? We would like a simple URL or COPY
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.