# 说明

创建发布评审依据,返回创建发布评审依据的数据

# url

https://api.tapd.cn/launch_accessories

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

POST

# 请求数限制

一次插入一条数据

# 请求参数

字段名 必选 类型及范围 说明
workspace_id integer 项目ID
form_id string 发布评审ID
type string 类型(仅支持launch_url)
content string url地址

# 调用示例及返回结果

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

curl -u 'api_user:api_password' -d 'workspace_id=10104801&form_id=1010104801079533889&type=launch_url&content=https://www.tapd.cn/' 'https://api.tapd.cn/launch_accessories'

# 返回结果

{
    "status": 1,
    "data": {
        "LaunchAccessory": {
            "id": "1010104801000254035",
            "form_id": "1010104801079533889",
            "workspace_id": "10104801",
            "type": "launch_url",
            "tag": "",
            "title": "URL",
            "content": "https://www.tapd.cn/",
            "description": null,
            "content_type": "",
            "created_by": "tapd",
            "created": "2022-09-08 16:45:30",
            "group_id": null,
            "source": ""
        }
    },
    "info": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

# 发布评审依据字段说明

# 发布评审依据字段重要字段说明

字段 说明
id 依据ID
workspace_id 所属项目ID
created 创建时间
form_id 发布评审ID
type 类型
title 标题
content url地址
description 详细描述
created_by 创建人
上次更新: 2022-09-08 18:09:02