# 说明
获取单个附件下载链接
# url
https://api.tapd.cn/attachments/down
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
GET
# 请求数限制
每次只能获取一个附件下载链接
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
workspace_id | 是 | integer | 空间ID |
id | 是 | integer | 附件ID |
# 调用示例及返回结果
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' 'https://api.tapd.cn/attachments/down?workspace_id=69993260&id=1069993260504708081'
# curl 使用 OAuth Access Token 鉴权调用示例
curl -H 'Authorization: Bearer ACCESS_TOKEN' 'https://api.tapd.cn/attachments/down?workspace_id=69993260&id=1069993260504708081'
# 返回结果
{
"status": 1,
"data": {
"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",
"download_url": "http://file.tapd.oa.com/attachments/tmp_download/ca30fd7a50e4b9bae194424307b10949?salt=acadb52e4c397fe3f3f1e1c12372d938&time=163642746"
}
},
"info": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 字段说明
# 返回字段说明
字段 | 说明 |
---|---|
id | 附件ID |
type | 类型(固定为story_custom_field) |
entry_id | 工作项的id |
filename | 文件名 |
description | 附件描述 |
content_type | 文件类型 |
created | 创建时间 |
workspace_id | 空间id |
owner | 附件上传人 |
download_url | 下载链接 |
← 上传base64图片 获取附件 →