# 说明

更新标签,返回更新后标签的数据。不支持更新标签名称

# url

https://api.tapd.cn/label

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

POST

# 请求数限制

一次插入一条数据

# 请求参数

字段名 必选 类型及范围 说明
id integer ID
workspace_id integer 项目ID
color integer 颜色标识,枚举值,可选[1,2,3,4]
modifier string 更新人

# 调用示例及返回结果

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

curl -u 'api_user:api_password' -d 'workspace_id=20358527&id=1220358527000001577&color=3&creator=tapd_api' 'https://api.tapd.cn/label'

# 返回结果

{
  "status": 1,
  "data": {
    "LabelPool": {
      "id": "1220358527000001577",
      "workspace_id": "20358527",
      "name": "创建标签",
      "color": "3",
      "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

# 标签字段说明

# 标签字段重要字段说明

字段 说明
id ID
name 标签名称
color 详细描述
created 创建时间
上次更新: 2022-09-26 21:04:12