# 说明

更新评论,返回更新评论的数据

# SDK 方法名

nodeJs:

SDK使用方式 (opens new window)

插件中使用SDK

方法名::

updateComment
1

# url

https://api.tapd.cn/comments

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

POST

# 请求数限制

一次插入一条数据

# 请求参数

字段名 必选 类型及范围 说明 特殊规则
description string 内容
id integer 评论id
workspace_id integer 项目ID
change_creator string 变更人

# curl 调用示例

curl -u 'api_user:api_password' -d 'workspace_id=20355782&description=xxxxx&id=1020355782058781915' 'https://api.tapd.cn/comments'

# 返回结果

{
	"status":1,
	"data":{
		"id":"1020355782058781915",
		"title":"\u5728\u72b6\u6001 [\u65b0] \u6dfb\u52a0",
		"description":"xxxxx",
		"author":"v_xuanfang",
		"entry_type":"bug",
		"entry_id":"1020355782500647717",
		"created":"2019-12-24 18:33:53",
		"modified":"2020-01-03 10:14:04",
		"workspace_id":"20355782"
	  }
   },
   "info":"success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

# 评论字段说明

# 评论重要字段说明

字段 说明
id 评论ID
title 标题
description 内容
author 评论人
entry_type 评论类型(取值: bug、 bug_remark (流转缺陷时候的评论)、 stories、 tasks 。
entry_id 评论所依附的业务对象实体id
created 创建时间
modified 最后更改时间
workspace_id 项目ID
上次更新: 2024-05-16 14:58:20