简要描述:
请求域名:
- http://xx.com
请求URL:
GET/plugin.instation-message.admin.message.index(获取视图)
POST/plugin.instation-message.admin.message.get-message-list(获取消息列表数据)
修改基础设置时传递的参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
search[title] | 否 | string | 搜索标题 |
search[start] | 否 | int | 搜索开始时间戳 |
search[end] | 否 | int | 搜索结束时间戳 |
返回示例:
正确时返回的数据:
{
"result": 1,
"msg": "ok",
"data": {
"list": {
"total": 3,
"per_page": 20,
"current_page": 1,
"last_page": 1,
"next_page_url": null,
"prev_page_url": null,
"from": 1,
"to": 3,
"data": [
{
"id": 1,
"title": "123123",
"type_id": 8,
"created_at": "2020-08-19 16:24:02",
"msg_type": {
"id": 8,
"name": "活动优惠"
}
},
{
"id": 2,
"title": "12321",
"type_id": 8,
"created_at": "2020-08-19 16:25:39",
"msg_type": {
"id": 8,
"name": "活动优惠"
}
}
]
},
"search": null
}
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
data.id | int | 消息id |
data.type_id | int | 消息类型id |
data.title | string | 消息标题 |
data.created_at | string | 创建时间 |
data.msg_type.id | int | 消息类型id |
data.msg_type.name | string | 消息类型名称 |
备注:
- 更多返回错误代码请看首页的错误代码描述