# 说明

新增附件

# SDK 方法名

nodeJs:

SDK使用方式 (opens new window)

插件中使用SDK

方法名::

addOpenAppObjAttachment
1

# url

https://api.tapd.cn/open_app_obj_attachment

# HTTP请求方式

POST

# 请求参数

字段名 必选 类型及范围 说明
title string 标题
type string 附件类型,目前只支持png/psd/iwiki
creator string 创建人
entry_type string 对象类型story/bug/task
entry_id string 对象ID
source_id string 第三方附件ID
source_url string 第三方附件链接

# 调用示例及返回结果

# 新增附件

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

curl -u 'api_user:api_password' -d 'title=test.png&type=png&creator=lincolnzhou&entry_type=story&entry_id=1020355972500702567&source_id=123456&source_url=http://www.tapd.cn' 'https://api.tapd.cn/open_app_obj_attachment?workspace_id=10158231&app_id=1'

# 返回结果

{
    "status": 1,
    "data": {
        "OpenAppObjAttachment": {
            "id": "23",
            "title": "test.png",
            "type": "png",
            "entry_type": "story",
            "entry_id": "1020355972500702567",
            "workspace_id": "10158231",
            "app_id": "1",
            "creator": "lincolnzhou",
            "created": "2020-04-08 12:20:57",
            "modified": "2020-04-08 12:33:39",
            "is_deleted": "0",
            "operator": "",
            "source_id": "123456",
            "source_url": "http:\/\/www.tapd.cn"
        }
    },
    "info": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

# 返回说明

返回 说明
status 取值1为成功,0为失败
上次更新: 2024-05-16 14:58:20