回复消息
更新时间:2025-01-19 07:40:01

回复消息

请求方法

POST

请求地址

/messages/{sessionId}/{msgId}/reply

请求参数

参数 参数类型 数据类型 是否必需 描述
msgType Body String 消息类型
body Body String 消息内容 【限制:消息请求体最大不能超过64KB】
sessionId Path Long 接收会话id

HTTP状态码

返回值 描述
200 操作成功,详见响应参数
400 客户端传参异常
401 鉴权失败
500 服务端异常

响应参数

参数 数据类型 描述
msgId Long 消息id
sessionId Long 会话id
senderId String 发送者id , 可以是用户或应用
receiverId String 接收者id
bornTime Long 消息生成时间

请求消息示例

POST /open/api/v2/messages/123456789/19846545151321/reply HTTP/1.1
Host: api.yealink.com
Content-Type: application/json

{
    "msgType": "text",
    "body": "hello"
}

响应消息示例


{
    "msgId": 1,
    "sessionId": 123456789,
    "senderId": "8d07a56207074d26b61026099625b9e2",
    "receiverId": "8d07a56207074d26b61026099625b9e2"
    "bornTime": "1623895862000"
}
本页目录