# 说明
更新需求关联群聊的标题
# url
https://apiv2.tapd.tencent.com/stories/update_story_group_chat_title
# 支持格式
JSON/XML(默认JSON格式)
# HTTP请求方式
POST
# 请求数限制
- 群聊需要已存在
 - 每次只允许更新一条数据
 
# 请求参数
| 字段名 | 必选 | 类型及范围 | 说明 | 
|---|---|---|---|
| workspace_id | 是 |  integer | 项目ID | 
| story_id | 是 |  integer | 需求ID | 
| chat_title | 是 |  string | 新群聊标题 | 
# 调用示例及返回结果
# 更新需求 1010104801006295309 的标题为 需求1010104801006295309标题
# curl 使用 Basic Auth 鉴权调用示例
curl -u 'api_user:api_password' -d 'workspace_id=10104801&story_id=1010104801006295309&chat_title=需求1010104801006295309标题' 'https://apiv2.tapd.tencent.com/stories/update_story_group_chat_title'
# curl 使用 OAuth Access Token 鉴权调用示例
curl -H 'Authorization: Bearer ACCESS_TOKEN' -d 'workspace_id=10104801&story_id=1010104801006295309&chat_title=需求1010104801006295309标题' 'https://apiv2.tapd.tencent.com/stories/update_story_group_chat_title'
# 返回结果
{
    "status": 1,
    "data": {
        "success": true
    },
    "info": "success"
}
 1
2
3
4
5
6
7
2
3
4
5
6
7