修改系统消息模版
- 接口说明: 修改系统消息模版
- 接口地址: /api/notification/tpl/{id}
- 请求方式: PATCH
请求参数
参数名称 | 类型 | 是否必须 | 描述 |
---|
status | int | 否 | 模版状态:1 开启 0 关闭 |
title | string | 否 | 模版标题 type=0 时传标题 |
content | int | 否 | 模版内容 type=0 时传内容 |
template_id | string | 否 | 当 tapy=1 微信通知时传这个值 |
请求示例:
{
"data": {
"attributes": {
"status": 1,
"title": "欢迎加入{sitename}",
"content": "{username}你好,你已经成为{sitename} 的{groupname} ,请您在发表言论时,遵守当地法律法规。祝你在这里玩的愉快哈?",
"template_id": "sdqANeqSEdwq-dsMaqSQwe-dsahqoorqWQAS"
}
}
}
返回说明
返回结果
字段名 | 变量名 |
---|
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}": "用户组"
}
}
}
}