消息撤回(定制)
POST
/wework/sendRawMessage功能介绍:
- 由机器人撤回机器人近期发送的指定内容消息
注意:
- 如果给用户或群聊添加了备注名就要使用备注名发送(如果使用备注则企微版本必须>=4.0.12)
- 请结合第三方QA使用
- 对微信客户或外部群的消息只可在两分钟内撤回
请求参数
Query 参数
robotId
string
客户端链接唯一标识
示例值:
{{robot_id}}
Header 参数
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
socketType
integer
固定值
list
array [object {4}]
必需
type
integer
固定值
titleList
array[string]
可选
消息接收者昵称或群名称
textType
integer
可选
QA回调里的textType
originalContent
string
可选
QA回调里的原始消息内容
示例
{
"socketType": 0,
"list": [
{
"type": 0,
"titleList": [
"string"
],
"textType": 0,
"originalContent": "string"
}
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
number
必需
message
string
必需
data
string
必需
示例
{
"code": 0,
"message": "string",
"data": "string"
}
最后修改时间: 1 年前