# 说明
新建标签,返回新建标签的数据
# url
https://api.tapd.cn/label
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
POST
# 请求数限制
一次插入一条数据
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
workspace_id | 是 | integer | 项目ID |
name | 是 | string | 标签名称,不能包括英文坚线 |
color | 否 | integer | 颜色标识,枚举值,可选[1,2,3,4] |
creator | 否 | string | 创建人 |
# 调用示例及返回结果
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' -d 'workspace_id=10104801&name=创建标签&creator=tapd_api' 'https://api.tapd.cn/label'
# 返回结果
{
"status": 1,
"data": {
"LabelPool": {
"id": "1220358527000001577",
"workspace_id": "20358527",
"name": "创建标签",
"color": "2",
"creator": "",
"modifier": "",
"created": "2022-09-26 20:25:02",
"modified": "2022-09-26 20:25:02"
}
},
"info": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 标签字段说明
# 标签字段重要字段说明
字段 | 说明 |
---|---|
id | ID |
name | 标签名称 |
color | 详细描述 |
created | 创建时间 |