简要描述:
- 消息详情
请求URL:
GET/&route=plugin.instation-message.api.message.get-message-detail
参数:
|:---- |:---|:----- |----- | | id | 是|string |消息id |
返回参数 data说明:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
_id | 是 | string | 消息id |
member_id | 是 | int | 用户id |
uniacid | 是 | int | 公众号id |
type_id | 是 | int | 消息类型id |
sub_type | 是 | int | 子类型id |
title | 是 | string | 标题 |
desc | 是 | string | 描述 |
content | 是 | string | 详情 |
url | 是 | string | 链接 |
mini_url | 是 | string | 小程序链接 |
msg_img | 是 | string | 消息图片 |
msg_img_src | 是 | string | 消息图片(绝对路径) |
msg_body | 是 | array | 消息主体信息(每种消息的主体不一致,例如订单消息包含着订单的信息、状态等,详情见消息首页底部备注) |
is_read | 是 | int | 读取状态,1未读,0已读 |
created_at | 是 | string | 消息发送时间 |
返回示例:
正确时返回:
{
"result": 1,
"msg": "ok",
"data": {
"_id": "5f3f3b9fae4300008a00338f",
"uniacid": 1,
"member_id": 164932,
"type_id": 6,
"sub_type": 0,
"title": "12321",
"desc": "123213",
"content": "",
"url": null,
"mini_url": null,
"msg_img": "",
"msg_body": "",
"is_read": 0,
"created_at": "2020-08-21 11:12:31",
"updated_at": "2020-08-21 11:45:43",
"msg_img_src": ""
}
}
错误时返回:
{
"result": 0,
"msg": "参数错误",
"data": []
}