Comment
Resource Comments Management - Unified entry point for managing and querying reviews/comments on AngusTester resources (e.g., test cases, tasks)
Query the tree of comment
GET
/api/v1/comment
授权
UserHttpBearer
Use existing opaque tokens for authentication
类型HTTP (bearer)
参数
查询参数
targetId*
类型integer
必填format
"int64"
targetType*
类型string
必填枚举
"PROJECT"
"TAG"
"MODULE"
"TASK"
"TASK_SPRINT"
"SOFTWARE_VERSION"
"TASK_ANALYSIS"
"MEETING"
"FUNC_PLAN"
"FUNC_REVIEW"
"FUNC_CASE"
"FUNC_CASE_BASELINE"
"FUNC_CASE_ANALYSIS"
"SERVICE"
"API"
"API_CASE"
"API_DESIGN"
"SCENARIO"
"SCENARIO_MONITOR"
"SCRIPT"
"MOCK_SERVICE"
"VARIABLE"
"DATASET"
"MOCK_APIS"
"EXECUTION"
"REPORT"
示例
"TASK"
响应
OK
*/*
JSON
{
"code": "string",
"msg": "string",
"data": {
},
"datetime": "string",
"ext": {
"additionalProperties": {
}
}
}
Add comment
POST
/api/v1/comment
授权
UserHttpBearer
Use existing opaque tokens for authentication
类型HTTP (bearer)
请求体
application/json
JSON
{
"pid": 0,
"content": "Post your thoughts",
"targetId": 0,
"targetType": "TASK"
}
响应
OK
*/*
JSON
{
"code": "string",
"msg": "string",
"data": {
},
"datetime": "string",
"ext": {
"additionalProperties": {
}
}
}