简要描述:
请求action:
plugin.app-set.frontend.message-detail.index
简要描述:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
message_id | 是 | int | 消息id |
正确时返回:
{
result: 1,
msg: "获取成功",
data: {
list: [
{
id: 1,
uniacid: 3,
uid: 59,
title: "test",
content: "asdadsadsad",
source: 0,
is_read: 0,
created_at: "2017-07-24 14:39:22",
updated_at: "2017-07-24 14:39:22",
deleted_at: null,
read_status: "未读",
source_name: "系统消息"
}
]
}
}
错误时返回:
{
"result": 0,
"msg":"参数错误",
"data":{}
}
{
"result": 0,
"msg":"未找到消息记录",
"data":{}
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
uniacid | int | 公众号id |
uid | int | 会员uid |
title | string | 通知标题 |
content | string | 通知内容 |
created_at | int | 创建时间 |
read_status | int | 已读/未读 |
source_name | int | 消息类型名称 |