简要描述:

  • 消息详情

请求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": []
}

备注: