# 说明
修改特性组基本信息
# url
https://apiv2.tapd.tencent.com/roles/edit_feature_team
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
POST
# 请求数限制
一次只能修改一个项目的一个特性组
# 请求参数
字段名 | 必选 | 类型及范围 | 说明 | 特殊规则 |
---|---|---|---|---|
workspace_id | 是 | integer | 项目 id | 无 |
id | 是 | integer | 特性组 id | 无 |
name | 否 | string | 修改后的新名称 | 无 |
leader | 否 | string | 修改后的新负责人 | 无 |
# 调用示例及返回结果
# 修改特性组基本信息
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' -d 'workspace_id=755&id=1000000755001007829&name=特性组9&leader=foobar' 'https://apiv2.tapd.tencent.com/roles/edit_feature_team'
# curl 使用 OAuth Access Token 鉴权调用示例
curl -H 'Authorization: Bearer ACCESS_TOKEN' -d 'workspace_id=755&id=1000000755001007829&name=特性组9&leader=foobar' 'https://apiv2.tapd.tencent.com/roles/edit_feature_team'
# 返回结果
{
"status": 1,
"data": "1000000755001007829",
"info": "success"
}
1
2
3
4
5
2
3
4
5