创建Bug 分享链接

作者:王怡栋 最后编辑:宋辰轩 于 2024-02-21 15:03:09 浏览量:8810
POST
/products/:id/bugs

创建Bug

请求头

名称类型必填描述
TokenString认证凭证Token

请求体

名称类型必填描述
branchint所属分支
moduleint所属模块
executionint所属执行
titlestringBug标题
keywordsstring关键词
severityint严重程度
priint优先级
typestringBug类型(codeerror 代码错误 | config 配置相关 | install 安装部署 | security 安全相关 | performance 性能问题 | standard 标准规范 | automation |测试脚本 | designdefect 设计缺陷 | others 其他)
osstring操作系统
browserstring浏览器
stepsstring重现步骤
taskint相关任务
storyint相关需求
deadlinedate截止日期
openedBuildarray影响版本

请求示例

{
    "title": "Bug2",
    "severity": 1,
    "pri": 1,
    "steps": "",
    "type": "codeerror",
    "openedBuild": [
        "trunk"
    ]
}

请求响应

名称类型必填描述
idintBug ID
productint所属产品
branchint所属分支
moduleint所属模块
projectint所属项目
executionint所属执行
toTaskboolean转为任务
toStoryboolean转为需求
titlestringBug标题
keywordsstring关键字
severityint严重程度
priint优先级
typestringBug类型(codeerror 代码错误 | config 配置相关 | install 安装部署 | security 安全相关 | performance 性能问题 | standard 标准规范 | automation |测试脚本 | designdefect 设计缺陷 | others 其他)
osstring操作系统
browserstring浏览器
stepsstring重现步骤
taskint相关任务
storyint相关需求
openedBystring创建人
openedDatedatetime创建时间
deadlinedate截止日期
assignedTo指派给
assgnedDatedatetime指派时间
resolvedBy由谁解决
resolvedDatedatetime解决时间
resolvedBuildstring解决版本
closedBy由谁关闭
closedDatedatetime关闭时间
statusstring状态(active 激活 | resolved 已解决 | closed 已关闭)

响应示例

{
    "id": 1,
    "project": 7,
    "product": 1,
    "branch": 0,
    "module": 0,
    "execution": 1,
    "plan": 0,
    "story": 1,
    "storyVersion": 1,
    "task": 1,
    "toTask": 0,
    "toStory": 0,
    "title": "aaa",
    "keywords": "",
    "severity": 3,
    "pri": 1,
    "type": "codeerror",
    "os": "",
    "browser": "",
    "hardware": "",
    "found": "",
    "steps": "<p>[步骤]进入首页</p>\r\n<p>[结果]出现乱码&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<p>[期望]正常显示</p>",
    "status": "active",
    "subStatus": "",
    "color": "",
    "confirmed": 0,
    "activatedCount": 0,
    "activatedDate": "1969-12-31T16:00:00Z",
    "feedbackBy": "",
    "notifyEmail": "",
    "mailto": [],
    "openedBy": {
        "id": 7,
        "account": "tester1",
        "avatar": "",
        "realname": "测试甲"
    },
    "openedDate": "2012-06-05T02:56:11Z",
    "openedBuild": "trunk",
    "assignedTo": {
        "id": 4,
        "account": "dev1",
        "avatar": "",
        "realname": "开发甲"
    },
    "assignedDate": "1969-12-31T16:00:00Z",
    "deadline": null,
    "resolvedBy": null,
    "resolution": "",
    "resolvedBuild": "",
    "resolvedDate": null,
    "closedBy": null,
    "closedDate": "1969-12-31T16:00:00Z",
    "duplicateBug": 0,
    "linkBug": "",
    "case": 0,
    "caseVersion": 1,
    "result": 0,
    "repo": 0,
    "entry": "",
    "lines": "",
    "v1": "",
    "v2": "",
    "repoType": "",
    "testtask": 0,
    "lastEditedBy": {
        "id": 1,
        "account": "admin",
        "avatar": "",
        "realname": "管理员"
    },
    "lastEditedDate": "2021-12-05T14:53:35Z",
    "deleted": false,
    "executionName": "企业网站第一期",
    "storyTitle": "首页设计和开发",
    "storyStatus": "active",
    "latestStoryVersion": 2,
    "taskName": null,
    "planName": null,
    "projectName": "企业管理系统",
    "toCases": [],
    "files": []
}