简要描述:
- 向客户发送消息
请求URL:
POST/plugin.yun-chat.frontend.chat.send-msg
开启企业微信客服使用以下接口:
POST/plugin.yun-chat.frontend.wechat-message.send-msg
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
~~user_uid~~ | ~~是~~ | ~~int~~ | ~~客户UId~~ |
content_type | 是 | int | 消息类型:0-文本,1-图片,2-商品,3-订单 |
text | 是 | string | 发送内容 |
queue_id | 是 | int | 会话ID |
返回示例:
正确时返回:
{
"result": 1,
"msg": "成功",
"data": {
"id": 11,
"uniacid": 2,
"uid": 1306,
"employee_id": 1,
"content": "欢迎~",
"content_type": 0,
"read_status": 1,
"direction_type": 0,
"is_system_send": 1,
"is_system_opt": 0,
"is_backed": 0,
"created_at": "2021-02-24 16:05:35",
"updated_at": "2021-02-24 16:05:35",
"deleted_at": null
}
}
错误时返回:
返回参数说明:
参数名 | 类型 | 说明 | |
---|---|---|---|
id | int | 会话消息ID | |
uid | int | 会员ID | |
employee_id | int | 客服ID | |
content | string | 内容 | |
content_type | int | 内容类型:0-文本,1-图片,2-商品,3-订单 | |
direction_type | int | 发送方向:0-客服发送给用户,1-用户发送个客服 | |
is_system_send | int | 是否为系统发送:0-否,1-是 | |
is_system_opt | int | 是否为系统操作的消息:0-否,1-是 | |
is_backed | int | 是否撤回:0-否,1-是 | |
created_at | string | 消息发送时间 |