新增关键词接口
POST
/open/keyword/addKeyword请求参数
Header 参数
access-key
string
访问令牌
示例值:
21177087e2b5486392bdacd8211785b7
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
groupId
integer
可选
群Id;不填为私聊关键词回复
isAt
integer
是否需要@机器人
keyword
string
必需
关键词;匹配规则为正则时,填写正则表达式
matchType
integer
必需
匹配规则;1相等,2模糊,3正则
replyType
integer
必需
回复类型;0不发送,1全部发送,2随机发送
replyList
array [object {3}]
回复内容
content
string
回复内容
msgType
string
消息类型
sort
integer
排序
示例
{
"groupId": 15,
"isAt": 1,
"keyword": "有人吗",
"matchType": 1,
"replyType": 1,
"replyList": [
{
"content": "我在请说",
"isAt": 1,
"msgType": "txt",
"sort": 1
}
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
响应编码
msg
string
响应说明
data
null
必需
响应内容;关键词Id
示例
{
"code": 200,
"msg": "执行成功",
"data": 1
}
最后修改时间: 8 个月前