系统消息模版列表
- 接口说明: 系统消息模版列表
- 接口地址: /api/notification/tpl
- 请求方式: GET
请求参数
参数名称 | 类型 | 是否必须 | 描述 |
---|---|---|---|
type | int | 否 | 默认 0 系统通知 1 微信通知 |
请求示例
/api/notification/tpl?type=1
返回说明
- 系统消息模版列表, http 状态码: 200
返回结果
回复我的、点赞我的通知 data 字段说明
字段名 | 变量名 |
---|---|
id | 编号 |
status | 状态 1 为正常, 0 关闭 |
type_name | 列表名称 |
title | 通知标题 |
conetn | 通知内容 |
vars | 可使用的变量 |
返回示例
{
"data": [
{
"type": "notification_tpls",
"id": "1",
"attributes": {
"status": 1,
"type_name": "新用户注册并加入后",
"title": "欢迎加入{sitename}",
"content": "{username}你好,你已经成为{sitename} 的{groupname} ,请您在发表言论时,遵守当地法律法规。祝你在这里玩的愉快。",
"vars": {
"{username}": "用户名",
"{sitename}": "站点名称",
"{groupname}": "用户组"
}
}
},
{
"type": "notification_tpls",
"id": "2",
"attributes": {
"status": 1,
"type_name": "注册审核通过通知",
"title": "注册审核通知",
"content": "{username}你好,你的注册申请已审核通过。",
"vars": {
"{username}": "用户名"
}
}
},
{
"type": "notification_tpls",
"id": "3",
"attributes": {
"status": 1,
"type_name": "注册审核不通过通知",
"title": "注册审核通知",
"content": "{username}你好,你的注册申请审核不通过,原因:{reason}",
"vars": {
"{username}": "用户名",
"{reason}": "原因"
}
}
},
{
"type": "notification_tpls",
"id": "4",
"attributes": {
"status": 1,
"type_name": "内容审核不通过通知",
"title": "内容审核通知",
"content": "{username}你好,你的发布的内容 \"{content}\" 审核不通过,原因:{reason}",
"vars": {
"{username}": "用户名",
"{content}": "内容",
"{reason}": "原因"
}
}
},
{
"type": "notification_tpls",
"id": "5",
"attributes": {
"status": 1,
"type_name": "内容审核通过通知",
"title": "内容审核通知",
"content": "{username}你好,你的发布的内容 \"{content}\" 审核通过",
"vars": {
"{username}": "用户名",
"{content}": "内容"
}
}
},
{
"type": "notification_tpls",
"id": "6",
"attributes": {
"status": 1,
"type_name": "内容删除通知",
"title": "内容删除通知",
"content": "{username}你好,你的发布的内容 \"{content} \" 已删除,原因:{reason}",
"vars": {
"{username}": "用户名",
"{content}": "内容",
"{reason}": "原因"
}
}
},
{
"type": "notification_tpls",
"id": "7",
"attributes": {
"status": 1,
"type_name": "内容精华通知",
"title": "内容精华通知",
"content": "{username}你好,你的发布的内容 \"{content}\" 已设为精华",
"vars": {
"{username}": "用户名",
"{content}": "内容"
}
}
},
{
"type": "notification_tpls",
"id": "8",
"attributes": {
"status": 1,
"type_name": "内容置顶通知",
"title": "内容置顶通知",
"content": "{username}你好,你的发布的内容 \"{content}\" 已置顶",
"vars": {
"{username}": "用户名",
"{content}": "内容"
}
}
},
{
"type": "notification_tpls",
"id": "9",
"attributes": {
"status": 1,
"type_name": "内容修改通知",
"title": "内容修改通知",
"content": "{username}你好,你的发布的内容 \"{content}\" 已被修改",
"vars": {
"{username}": "用户名",
"{content}": "内容"
}
}
},
{
"type": "notification_tpls",
"id": "10",
"attributes": {
"status": 1,
"type_name": "帐号禁用通知",
"title": "帐号禁用通知",
"content": "{username}你好,你的账号已禁用,原因:{reason}",
"vars": {
"{username}": "用户名",
"{reason}": "原因"
}
}
},
{
"type": "notification_tpls",
"id": "11",
"attributes": {
"status": 1,
"type_name": "用户解除禁用通知",
"title": "解除禁用通知",
"content": "{username}你好,你的账号已解除禁用",
"vars": {
"{username}": "用户名"
}
}
},
{
"type": "notification_tpls",
"id": "12",
"attributes": {
"status": 1,
"type_name": "用户角色调整通知",
"title": "角色调整通知",
"content": "{username}你好,你的角色由{oldgroupname}变更为{newgroupname}",
"vars": {
"{username}": "用户名",
"{oldgroupname}": "老用户组",
"{newgroupname}": "新用户组"
}
}
}
]
}