系统消息模版列表

  • 接口说明: 系统消息模版列表
  • 接口地址: /api/notification/tpl
  • 请求方式: GET

请求参数

参数名称类型是否必须描述
typeint默认 0 系统通知 1 微信通知

请求示例

/api/notification/tpl?type=1

返回说明

  • 系统消息模版列表, http 状态码: 200

返回结果

回复我的、点赞我的通知 data 字段说明

字段名变量名
id编号
status状态 1 为正常, 0 关闭
type_name列表名称
title通知标题
conetn通知内容
vars可使用的变量

返回示例

  1. {
  2. "data": [
  3. {
  4. "type": "notification_tpls",
  5. "id": "1",
  6. "attributes": {
  7. "status": 1,
  8. "type_name": "新用户注册并加入后",
  9. "title": "欢迎加入{sitename}",
  10. "content": "{username}你好,你已经成为{sitename} 的{groupname} ,请您在发表言论时,遵守当地法律法规。祝你在这里玩的愉快。",
  11. "vars": {
  12. "{username}": "用户名",
  13. "{sitename}": "站点名称",
  14. "{groupname}": "用户组"
  15. }
  16. }
  17. },
  18. {
  19. "type": "notification_tpls",
  20. "id": "2",
  21. "attributes": {
  22. "status": 1,
  23. "type_name": "注册审核通过通知",
  24. "title": "注册审核通知",
  25. "content": "{username}你好,你的注册申请已审核通过。",
  26. "vars": {
  27. "{username}": "用户名"
  28. }
  29. }
  30. },
  31. {
  32. "type": "notification_tpls",
  33. "id": "3",
  34. "attributes": {
  35. "status": 1,
  36. "type_name": "注册审核不通过通知",
  37. "title": "注册审核通知",
  38. "content": "{username}你好,你的注册申请审核不通过,原因:{reason}",
  39. "vars": {
  40. "{username}": "用户名",
  41. "{reason}": "原因"
  42. }
  43. }
  44. },
  45. {
  46. "type": "notification_tpls",
  47. "id": "4",
  48. "attributes": {
  49. "status": 1,
  50. "type_name": "内容审核不通过通知",
  51. "title": "内容审核通知",
  52. "content": "{username}你好,你的发布的内容 \"{content}\" 审核不通过,原因:{reason}",
  53. "vars": {
  54. "{username}": "用户名",
  55. "{content}": "内容",
  56. "{reason}": "原因"
  57. }
  58. }
  59. },
  60. {
  61. "type": "notification_tpls",
  62. "id": "5",
  63. "attributes": {
  64. "status": 1,
  65. "type_name": "内容审核通过通知",
  66. "title": "内容审核通知",
  67. "content": "{username}你好,你的发布的内容 \"{content}\" 审核通过",
  68. "vars": {
  69. "{username}": "用户名",
  70. "{content}": "内容"
  71. }
  72. }
  73. },
  74. {
  75. "type": "notification_tpls",
  76. "id": "6",
  77. "attributes": {
  78. "status": 1,
  79. "type_name": "内容删除通知",
  80. "title": "内容删除通知",
  81. "content": "{username}你好,你的发布的内容 \"{content} \" 已删除,原因:{reason}",
  82. "vars": {
  83. "{username}": "用户名",
  84. "{content}": "内容",
  85. "{reason}": "原因"
  86. }
  87. }
  88. },
  89. {
  90. "type": "notification_tpls",
  91. "id": "7",
  92. "attributes": {
  93. "status": 1,
  94. "type_name": "内容精华通知",
  95. "title": "内容精华通知",
  96. "content": "{username}你好,你的发布的内容 \"{content}\" 已设为精华",
  97. "vars": {
  98. "{username}": "用户名",
  99. "{content}": "内容"
  100. }
  101. }
  102. },
  103. {
  104. "type": "notification_tpls",
  105. "id": "8",
  106. "attributes": {
  107. "status": 1,
  108. "type_name": "内容置顶通知",
  109. "title": "内容置顶通知",
  110. "content": "{username}你好,你的发布的内容 \"{content}\" 已置顶",
  111. "vars": {
  112. "{username}": "用户名",
  113. "{content}": "内容"
  114. }
  115. }
  116. },
  117. {
  118. "type": "notification_tpls",
  119. "id": "9",
  120. "attributes": {
  121. "status": 1,
  122. "type_name": "内容修改通知",
  123. "title": "内容修改通知",
  124. "content": "{username}你好,你的发布的内容 \"{content}\" 已被修改",
  125. "vars": {
  126. "{username}": "用户名",
  127. "{content}": "内容"
  128. }
  129. }
  130. },
  131. {
  132. "type": "notification_tpls",
  133. "id": "10",
  134. "attributes": {
  135. "status": 1,
  136. "type_name": "帐号禁用通知",
  137. "title": "帐号禁用通知",
  138. "content": "{username}你好,你的账号已禁用,原因:{reason}",
  139. "vars": {
  140. "{username}": "用户名",
  141. "{reason}": "原因"
  142. }
  143. }
  144. },
  145. {
  146. "type": "notification_tpls",
  147. "id": "11",
  148. "attributes": {
  149. "status": 1,
  150. "type_name": "用户解除禁用通知",
  151. "title": "解除禁用通知",
  152. "content": "{username}你好,你的账号已解除禁用",
  153. "vars": {
  154. "{username}": "用户名"
  155. }
  156. }
  157. },
  158. {
  159. "type": "notification_tpls",
  160. "id": "12",
  161. "attributes": {
  162. "status": 1,
  163. "type_name": "用户角色调整通知",
  164. "title": "角色调整通知",
  165. "content": "{username}你好,你的角色由{oldgroupname}变更为{newgroupname}",
  166. "vars": {
  167. "{username}": "用户名",
  168. "{oldgroupname}": "老用户组",
  169. "{newgroupname}": "新用户组"
  170. }
  171. }
  172. }
  173. ]
  174. }