Attachment Downloader for Jira
Download all attachments simultaneously from search results and save them as a zip file on a hard drive sorted by your criteria
General
Easily download all attachments
To save attachments from specific issues, just search for those issues and then use the menu item “Export” -> “Attachments to ZIP file” to export them as a ZIP file
Select the files that appeal to your preferences
Select file formats or define a custom pattern that appeal to your preferences before downloading files to your disk
Group attachments in a ZIP file
Group and choose a folder structure to automatically organize files before downloading them.
REST API
Method type - status:POST
URL: {JIRA_URL}/rest/attachment-downloader/1.0/download/all
Request format - status:JSON
Example request
{
"jql": "project = SSD",
"include": "all",
"includeRegexp": "",
"exclude": "",
"excludeRegexp": "",
"groupBy": "issueKey"
}
{
"jql": "project = SSD",
"include": "jpg,png,xls",
"includeRegexp": ".*report.*",
"exclude": "bmp,gif",
"excludeRegexp": ".*2025.*",
"groupBy": "projectKey,issueKey"
}
jql - required - jql containing issues from which we want to download attachments
include - required - comma separated file extensions that will be downloaded
Value all means all file types
includeRegexp - optional - regular expr. that must match the file name and extension to include it
exclude - optional - - comma separated file extensions that will be downloaded
excludeRegexp - optional - regular expr. that must match the file name and extension to exclude it
groupBy - optional - how files should be grouped into folders
Supported values: issueKey, issueSummary, projectKey or attachmentType
Example CURL
curl --location 'JIRA_URL/rest/attachment-downloader/1.0/download/all' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic ***********' \
--data '{
"jql": "project = SSD and issuetype = Documentation",
"include": "all",
"groupBy": "issueKey"
}' \
--output attachments.zip
Support
If you have any questions or suggestions, please don’t hesitate to contact me.
Please feel free to contact us by email support@itlab.net.pl or Jira Service Desk if you require any further information.