修改事件
POST
/myauth/web/updEvent请求参数
Header 参数
token
string
必需
登录成功后返回的token
示例值:
2b036bd8139e44e1a8034e371d9584a7
Body 参数application/json
id
integer
事件id
name
string
事件名称
同一软件下不要重复
point
integer
点数变动值
增加为正数,扣除为负数
seconds
integer
秒数变动值
增加为正数,扣除为负数
status
integer
状态
0=禁用,1=正常
dayCount
integer
每天使用次数
0为不限制
allCount
integer
总共使用次数
0为不限制
startTime
integer
使用时间限制开始
10位时间戳,0为不限制
endTime
integer
使用时间限制结束
10位时间戳,0为不限制
示例
{
"id": 1,
"name": "解绑",
"point": -10,
"seconds": -3600,
"status": "1"
}
示例代码
返回响应
成功(200)
错误(500)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
success
boolean
必需
msg
string
必需
sign
string
必需
result
null
必需
timestamp
integer
必需
示例成功示例
{
"code": 200,
"success": true,
"msg": "修改成功",
"sign": "",
"result": null,
"timestamp": 1645691678138
}
最后修改时间: 1 年前