按条件批量操作用户授权
开发中POST
/myauth/web/updateUserAuthInfo超级管理员有权限
请求参数
Header 参数
token
string
必需
登录成功后返回的token
示例值:
e17e8f4dadb04b3d97a511aef91c048e
Body 参数application/json
以下条件参数为NULL就不限制
fromSoftId
integer
软件ID
minPoint
integer
最小点数
maxPoint
integer
最大点数
minAuthTime
integer
最早到期时间
十位时间戳
maxAuthTime
integer
最晚到期时间
十位时间戳
minRegTime
integer
最早注册时间
十位时间戳
maxRegTime
integer
最晚注册时间
十位时间戳
updPoint
integer
修改的点数
+-点数
updAuthTime
integer
修改的授权时间
+-授权时间秒数
示例
{
"fromSoftId": 1,
"updPoint": null,
"updAuthTime": -1,
"minPoint": null,
"maxAuthTime": 1686126420,
"maxRegTime": null,
"minAuthTime": 1686126416,
"minRegTime": null,
"maxPoint": null
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
success
boolean
必需
msg
string
必需
sign
string
必需
result
null
必需
timestamp
integer
必需
示例成功示例
{
"code": 200,
"success": true,
"msg": "操作成功,符合条件数量:0",
"sign": "",
"result": null,
"timestamp": 1691339541734
}
最后修改时间: 1 年前