获取指定消息的内容
请求方法
GET
请求地址
/messages/{sessionId}/{msgId}/detail
请求参数
参数 |
参数类型 |
数据类型 |
是否必需 |
描述 |
msgId |
Path |
Long |
是 |
消息id |
sessionId |
Path |
Long |
是 |
接收会话id |
响应参数
参数 |
数据类型 |
描述 |
msgType |
String |
消息类型 |
body |
String |
消息内容 |
senderId |
String |
发送者id 发送者,可以是用户或机器人 |
bornTime |
Long |
消息生成时间 |
HTTP状态码
返回值 |
描述 |
200 |
操作成功,详见响应参数 |
400 |
客户端传参异常 |
401 |
鉴权失败 |
500 |
服务端异常 |
请求消息示例
GET /open/api/v2/messages/234234234/12312312321/detail HTTP/1.1
Host: api.yealink.com
Content-Type: application/json
响应消息示例
{
"msgType": "text",
"body": "hello",
"senderId": 123456789,
"bornTime":324234324
}