# 说明

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

# SDK 方法名

nodeJs:

SDK使用方式 (opens new window)

插件中使用SDK

方法名::

addComment
1

# url

https://api.tapd.cn/comments

# 支持格式

JSON/XML(默认JSON格式)

# HTTP请求方式

POST

# 请求数限制

一次插入一条数据

# 请求参数

字段名 必选 类型及范围 说明
description string 内容
author string 评论人
entry_type string 评论类型(取值: bug、 bug_remark (流转缺陷时候的评论)、 stories、 tasks 。)
entry_id integer 评论所依附的业务对象实体id
workspace_id integer 项目ID
root_id integer 根评论ID
reply_id integer 评论回复的ID

# curl 调用示例

curl -u 'api_user:api_password' -d 'workspace_id=20355782&entry_type=bug&entry_id=1020355782500647717&description=ccc&author=xuanfang' 'https://api.tapd.cn/comments'

# 返回结果

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

# 评论字段说明

# 评论重要字段说明

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