# 说明

新建版本,返回新建版本的数据

# SDK 方法名

nodeJs:

SDK使用方式 (opens new window)

插件中使用SDK

方法名::

addVersion
1

# url

https://api.tapd.cn/versions

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

POST

# 请求数限制

一次插入一条数据

# 请求参数

字段名 必选 类型及范围 说明
workspace_id integer 项目ID
name string 标题
creator string 创建人
id integer VersionID
description string 详细描述
owner string 负责人

# 调用示例及返回结果

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

curl -u 'api_user:api_password' -d 'workspace_id=64851079&name=test3&creator=tapd_api' 'https://api.tapd.cn/versions'

# 返回结果

{
    "status": 1,
    "data": {
        "Version": {
            "id": "1164851079001000271",
            "name": "test",
            "description": null,
            "created": "2019-05-15 11:17:52",
            "owner": null,
            "due": null,
            "completed": "0",
            "default": "0",
            "parent_id": null,
            "path": null,
            "module_id": null,
            "start": null,
            "realend": null,
            "testtime": null,
            "realbegin": null,
            "releasetime": null,
            "business_module": null,
            "version_type": null,
            "modifier": null,
            "modified_time": null,
            "workspace_id": "64851079",
            "creator": "tapd_api"
        }
    },
    "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

# 版本字段说明

# 版本字段重要字段说明

字段 说明
id versionID
workspace_id 项目ID
name 标题
description 详细描述
creator 创建人
owner 负责人
上次更新: 2024-05-16 14:58:20