跳转至

Issue-回复 创建



POST /api/v1/issue/reply/create

概述

Body 请求参数

参数名 类型 必选 说明
issueUUID string Y 对应回复issue的UUID
例子: issueUUID
允许为空: False
attachmentUuids array 回复附件上传列表uuids
例子: []
允许为空: True
content string 回复内容
例子: answer_xxx
允许为空: True
允许空字符串: True
$maxCustomLength: 65535
extend json Y 额外拓展信息,没有内容默认{}
例子: {}
允许为空: True

参数补充说明

基本参数说明

参数名 参数类型 是否必填 参数说明
issueUUID string Y 对应回复issue的UUID
attachmentUuids array N 对应回复issue的附件列表uuid,需先通过 /api/v1/attachment/upload 接口进行上传
content string N 回复的内容
attachmentUuids array N 附件上传列表uuid
extend json Y 扩展字段,默认传{}

扩展字段extend说明

更新场景中,channels和channelUUIDs的作用会默认的向默认频道和追加的频道中进行关联处理, 如果传[],默认只会存在空间默认频道中

参数名 参数类型 是否必填 参数说明
channels array N 期望issue投递的资源列表
members array N 期望issue通知的通知对象成员
extra json N 回复创建人相关名称等信息, 用于前端回显

extend 字段示例:

{
    "members": [
        {
            "type": "@",
            "uuid": "acnt_d72e117f8902419fa1d135d1d781b79d",
            "exists": true
        }
    ],
    "channels": [
        {
            "type": "#",
            "uuid": "chan_cf4f9aa671ef4dffa5a2b5d1824cd5b7",
            "exists": true
        }
    ],
    "extra": {
            "creator": {
                "name": "xxx",
                "email": "xxx@qq.com",
            }
            }
}

请求例子

curl 'https://openapi.guance.com/api/v1/issue/reply/create' \
-H 'DF-API-KEY: <DF-API-KEY>' \
-H 'Content-Type: application/json;charset=UTF-8' \
--data-raw '{"issueUUID":"issue_a3c3f3850d914a0d8ad5dee4f8ac6040","content":"aaa","attachmentUuids":[],"extend":{"members":[],"channels":[],"linkList":[]}}'\
--compressed

响应

{
    "code": 200,
    "content": {
        "content": "aaa",
        "createAt": 1690810887,
        "creator": "acnt_349ee5f70a89442fa94b4f754b5acbfe",
        "deleteAt": -1,
        "extend": {
            "channels": [],
            "linkList": [],
            "members": []
        },
        "id": null,
        "issueUUID": "issue_a3c3f3850d914a0d8ad5dee4f8ac6040",
        "status": 0,
        "type": "reply",
        "updateAt": 1690810887,
        "updator": "acnt_349ee5f70a89442fa94b4f754b5acbfe",
        "uuid": "repim_73265eb9e69449de8d0b98e3b789a174",
        "workspaceUUID": "wksp_a7baa18031fb4a2db2ad467d384fd804"
    },
    "errorCode": "",
    "message": "",
    "success": true,
    "traceId": "10459577100278308134"
} 

文档评价

文档内容是否对您有帮助? ×