I’m using Jira Cloud and would like to verify the files that were manually attached to multiple issues.
My goal is not to download the attachment files themselves.
I would like to export only the attachment file names, such as PDF file names, and compare them with an Excel checklist to confirm that the correct files have been attached to the correct issues.
I tried exporting the issues in HTML format and selected all fields, but the attachment file names were not included in the output.
Could you please advise on how to retrieve a list of attachment file names in Jira Cloud?
If there is any way to achieve this using standard Jira Cloud features, I would appreciate your guidance.
For context, the attachments are manually uploaded PDF files, and the volume is around 100 issues per month.
Since using REST API or RPA may be difficult in our case, we are looking for a way to verify this using Jira Cloud’s standard features.
Thank you in advance.
You could create a scheduled automation rule.
Do an issue lookup action and from found issues sent an email with all attachments listed.
Use smart values {{attachment.filename}} in the mail.
Set mail config like this for example:
{{#lookupIssues}}
* {{key}} | {{summary}} | {{attachment.filename}}
{{/}}
Hi, @nagata shumpei
I understand, that REST is difficult to use, but still, most easy way is to use REST API. Use GET request to list all attachments:
https://you-company.atlassian.net/rest/api/3/issue/ISSUE_KEY-1234?fields=attachment
Almost forgot about automation, +1 to @Marc -Devoteam- suggested solution. Easy and don't require any additional functionality.
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.