在评论中 at
开发中POST
{endpoint_url}/events请求参数
Path 参数
endpoint_url
string
必需
示例值:
{{endpoint_url}}
Header 参数
X-Shimo-Token
string
必需
用于接入方对本次请求鉴权
X-Shimo-Sdk-Event
string
必需
用于识别具体的事件类型
示例值:
MentionAt
Body 参数application/json
kind
string
必需
type
string
必需
子分类,comment、discussion、mention_at
action
string
create 等
fileId
string
接入方文件 ID
userId
string
接入方用户 ID
comment
object
必需
guid
string
评论 ID
selectionGuid
string
评论划词 ID
selectionTitle
string
必需
表格场景为 sheetId
content
string
评论内容
userIds
array[string]
评论中 @ 的用户
示例
{
"kind": "mention_at",
"type": "comment", // 子分类,comment、discussion、mention_at
"action": "create", // create 等
"fileId": "file1", // 接入方文件 ID
"userId": "user1", // 接入方用户 ID
"comment": {
"guid": "AChYTfButGeGArBi", // 评论 ID
"selectionGuid": "comment-vTBHz6FpLckq2duh", // 评论划词 ID
"selectionTitle": "MODOC", // 表格场景为 sheetId
"content": "@zhangsan 123", // 评论内容
"userIds": ["user1"] // 评论中 @ 的用户
}
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
object {0}
示例
{}
最后修改时间: 8 个月前