发消息
POST api/v1/message/send
说明:发送消息。
Header
Authorization
String
Bearer ${unifiedAuthToken} ,其中unifiedAuthToken来自/api/v1/auth接口的返回
Request Parameters
channelUuid
String
选填,与toRelationId 至少有一个不为空。群组uuid
toRelationId
String
选填,与channelUuid 至少有一个不为空。对方的relationId
type
String
消息类型,当前系统默认的三种类型:text;sys;card,用户可自行扩展
content
String
消息内容
sendUuid
String
消息uuid,由客户端生成维护
quoteId
String
引用的消息id
mentionedUser
Array[String]
提及的用户relationId集合
Request Example
Response Parameters
code
String
返回码
desc
String
返回信息
data
SendMessageResponse
数据
The SendMessageResponse field consists of the following subfields:
id
String
消息的唯一id
channelUuid
String
群组的uuid
Response Body
Return Code
0
success
接口调用成功
10112
parameter error
channelUuid和toRelationId不能同时为空
13301
block stranger messages
对方开启了禁止陌生人聊天模式
13108
Not the member of this group
非群组成员,无权限发送消息
Last updated