文档
测试

获取聊天记录

GET
{{host}}/openapi/wework/getChatMsg

接口描述

每次最多返回1000条,可以通过cursorId拉取后续记录

请求参数

参数名
类型
描述
必填
startTime
Long
查询日期开始时间戳,毫秒,可以不传
必填
cursorId
int
最新一条消息的cursorId,将筛选cursorId之后的数据返回,可以为0
必填
chatType
int
0表示好友聊天,1表示群聊天
必填
userId
String
员工id(chatType为0的时候为必填项)
必填

说明 / 示例

{ "code": 0, "data": [ { "cursorId":1234, "clientName": "翟璇", "staffName": "李俊鹏", "remark": "翟璇", "isSend": 1, "isSelf": 1, "qunTalkerName": null, "msgType": "image", "msgContent": "wework/friend/image/621/image/1626158551466_141203.jpg", "msgTime": 1626158550000 }, { "cursorId":1235, "clientName": "翟璇", "staffName": "李俊鹏", "remark": "翟璇", "isSend": 1, "isSelf": 1, "qunTalkerName": null, "msgType": "text", "msgContent":"123tst", "msgTime": 1626158617000 }] }