# 说明

返回符合查询条件的所有的附件

# url

https://api.tapd.cn/attachments

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

GET

# 请求数限制

默认返回 30 条。可通过传 limit 参数设置,最大取 200。也可以传 page 参数翻页

# 请求参数

字段名 必选 类型及范围 说明 特殊规则
workspace_id integer 空间ID
id integer ID
entry_id integer 工作项ID
filename integer 附件名称
owner string 上传人

# 调用示例及返回结果

# curl 使用 Basic Auth 鉴权调用示例

curl -u 'api_user:api_password' 'https://api.tapd.cn/attachments?workspace_id=69993260'

# curl 使用 OAuth Access Token 鉴权调用示例

curl -H 'Authorization: Bearer ACCESS_TOKEN' 'https://api.tapd.cn/attachments?workspace_id=69993260'

# 返回结果

{
    "status": 1,
    "data": [
        {
            "Attachment": {
                "id": "1069993260504708083",
                "type": "story_custom_field",
                "entry_id": "1069993260856110917",
                "filename": "测试导出看板_需求_20230626094923.xlsx",
                "description": "",
                "content_type": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
                "created": "2023-07-19 15:07:20",
                "workspace_id": "69993260",
                "owner": "orangecyang"
            }
        },
        {
            "Attachment": {
                "id": "1069993260504708081",
                "type": "story_custom_field",
                "entry_id": "1069993260856110917",
                "filename": "70077675 (1).zip",
                "description": "",
                "content_type": "application/zip",
                "created": "2023-07-19 15:07:15",
                "workspace_id": "69993260",
                "owner": "orangecyang"
            }
        }
    ],
    "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
31
32

# 附件字段说明

# 附件重要字段说明

字段 说明
id 附件ID
type
entry_id 工作项ID
created 创建时间
filename 附件名称
content_type 内容类型
workspace_id 空间ID
owner 上传人
上次更新: 2023-07-19 15:56:32