# 说明
返回符合查询条件的所有的附件
# url
https://api.tapd.cn/attachments
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
GET
# 请求数限制
默认返回 30 条。可通过传 limit 参数设置,最大取 200。也可以传 page 参数翻页
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 | 特殊规则 |
---|---|---|---|---|
workspace_id | 是 | integer | 项目ID | |
id | 否 | integer | ID | |
type | 否 | string | 类型 | |
entry_id | 否 | integer | 依赖对象ID | |
filename | 否 | integer | 附件名称 | |
owner | 否 | string | 上传人 |
# 调用示例及返回结果
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' 'https://api.tapd.cn/attachments?workspace_id=10104801'
# 返回结果
{
"status": 1,
"data": [
{
"Attachment": {
"id": "1210104801000028203",
"type": "wiki_description",
"entry_id": "6100014242115511668",
"filename": "OneDrive.mp4",
"content_type": "video/mp4",
"created": "2021-04-08 15:51:27",
"workspace_id": "10104801",
"owner": "anyechen"
}
},
{
"Attachment": {
"id": "1210104801000002153",
"type": "wiki",
"entry_id": "1210104801000017645",
"filename": "raingeek.jpg",
"content_type": "image/jpeg",
"created": "2017-11-23 17:01:36",
"workspace_id": "10104801",
"owner": "anyechen"
}
}
],
"info": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# 附件字段说明
# 附件重要字段说明
字段 | 说明 |
---|---|
id | 附件ID |
type | 类型 |
entry_id | 依赖对象ID |
created | 创建时间 |
filename | 附件名称 |
content_type | 内容类型 |
workspace_id | 项目ID |
owner | 上传人 |
← 获取项目报告 获取单个附件下载链接 →