操作
附件¶
要通过API附加文件,请参阅一般主题中的附加文件。
/attachments/:id.:format¶
GET¶
返回给定id的附件描述。
文件可以通过响应中content_url
属性给出的URL实际下载。
示例:
GET /attachments/13.xml
响应:
<attachment>
<id>6243</id>
<filename>test.txt</filename>
<filesize>124</filesize>
<content_type>text/plain</content_type>
<description>This is an attachment</description>
<content_url>https://127.0.0.1:3000/attachments/download/6243/test.txt</content_url>
<author name="Jean-Philippe Lang" id="1"/>
<created_on>2011-07-18T22:58:40+02:00</created_on>
</attachment>
注意:通过API获取问题后,也可以使用GET /issues/:id.:format?include=attachments
在单个请求中检索其附件。
PATCH¶
更新附件。
(尚未记录。有关详细信息,请参阅#12181)
DELETE¶
删除附件。
示例:
DELETE /attachments/6243.json