Last updated
Last updated
GET /rest/api/{2-3}/attachment/meta
Returns the attachment settings, that is, whether attachments are enabled and the maximum attachment size allowed, the method returns the following information:
GET /rest/api/{2-3}/attachment/{id}
Returns the metadata for an attachment. Note that the attachment itself is not returned, the method returns the following information:
GET /rest/api/{2-3}/attachment/{id}/expand/human
This is an experimental endpoint
Returns the metadata for the contents of an attachment, if it is an archive, and metadata for the attachment itself.
For example, if the attachment is a ZIP archive, then information about the files in the archive is returned and metadata for the ZIP archive. Currently, only the ZIP archive format is supported, the method returns the following information:
DELETE /rest/api/{2-3}/attachment/{id}
Deletes an attachment from an issue, the method returns the following information:
POST /rest/api/{2-3}/issue/{issueIdOrKey}/attachments
The name of the multipart/form-data parameter that contains the attachments must be file
.
It only accepts one attachment at once
GET /rest/api/{2-3}/attachment/content/{id}
This endpoint returns the contents of an attachment. A Range
header can be set to define a range of bytes within the attachment to download.
If successful, Jira will return a response with the attachment file. You can save the file to your local filesystem or process it in your application as needed.
Adds one or more attachments to an issue. Attachments are posted as multipart/form-data ().
The request must have a X-Atlassian-Token: no-check
header, if not it is blocked. See for more information.