获取发送配置列表
POST
/myauth/web/getMailSendList只有admin账号有权限使用
请求参数
Header 参数
token
string
必需
示例值:
b9eab83c09cc4d38bbcef5392cfb6333
Body 参数application/json
id
integer
可选
sendType
string
发送类型
sendSwitch
integer
发送开关
0关闭1开启
sendTheme
string
主题
sendTitle
string
标题
sendTemplates
string
模板
HTML模板
pageIndex
integer
页码
pageSize
integer
每页数据行数
orders
array [object {2}]
排序
column
string | null
字段名
必须严格遵守系统返回的字段名,即原样的驼峰命名法
asc
string | null
是否正序排序
示例
{
"id": null,
"sendType": null,
"sendSwitch": null,
"sendTheme": null,
"sendTitle": null,
"sendTemplates": null,
"pageIndex": 1,
"pageSize": 10,
"orders": [
{
"column": null,
"asc": null
}
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
success
boolean
必需
msg
string
必需
sign
string
必需
result
object
必需
records
array [object {6}]
必需
total
integer
必需
size
integer
必需
current
integer
必需
orders
array [object {2}]
必需
optimizeCountSql
boolean
必需
searchCount
boolean
必需
countId
null
必需
maxLimit
null
必需
pages
integer
必需
timestamp
integer
必需
示例成功示例
{
"code": 200,
"success": true,
"msg": "获取成功",
"sign": "",
"result": {
"records": [
{
"id": 1,
"sendType": "request",
"sendSwitch": 0,
"sendTheme": "MyAuth授权中心注册通知",
"sendTitle": "您的授权绑定已注册成功!",
"sendTemplates": "authSend"
},
{
"id": 2,
"sendType": "useCkey",
"sendSwitch": 0,
"sendTheme": "MyAuth授权中心使用卡密通知",
"sendTitle": "您的授权绑定已使用新的卡密!",
"sendTemplates": "authSend"
},
{
"id": 3,
"sendType": "unbind",
"sendSwitch": 0,
"sendTheme": "MyAuth授权中心用户解绑通知",
"sendTitle": "您的授权绑定已解绑!",
"sendTemplates": "authSend"
},
{
"id": 4,
"sendType": "editPass",
"sendSwitch": 0,
"sendTheme": "MyAuth授权中心修改密码通知",
"sendTitle": "您的授权绑定已修改密码!",
"sendTemplates": "authSend"
},
{
"id": 5,
"sendType": "editInfo",
"sendSwitch": 0,
"sendTheme": "MyAuth授权中心资料(QQ/昵称)修改通知",
"sendTitle": "您的授权绑定已修改资料(QQ/昵称)!",
"sendTemplates": "authSend"
},
{
"id": 6,
"sendType": "authTimeExpires",
"sendSwitch": 0,
"sendTheme": "MyAuth授权中心授权到期通知",
"sendTitle": "您的授权绑定已到期!",
"sendTemplates": "authSend"
},
{
"id": 7,
"sendType": "updUser",
"sendSwitch": 0,
"sendTheme": "MyAuth授权中心授权修改通知",
"sendTitle": "管理员已修改你的授权信息!",
"sendTemplates": "authSend"
},
{
"id": 8,
"sendType": "addUser",
"sendSwitch": 0,
"sendTheme": "MyAuth授权中心授权添加通知",
"sendTitle": "管理员已添加你的授权信息!",
"sendTemplates": "authSend"
}
],
"total": 8,
"size": 10,
"current": 1,
"orders": [
{
"column": "",
"asc": true
}
],
"optimizeCountSql": true,
"searchCount": true,
"countId": null,
"maxLimit": null,
"pages": 1
},
"timestamp": 1652713454566
}
最后修改时间: 1 年前