获取封禁类型数量
GET
/myauth/web/getBanTypeCount获取封禁列表中各个类型的数量,一般用在首页图表上,建议柱状图
请求参数
Header 参数
token
string
必需
登录成功后返回的token
示例值:
123
示例代码
返回响应
成功(200)
错误(500)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
success
boolean
必需
msg
string
必需
sign
string
必需
result
object
必需
list
array [object {2}]
固定为3个成员
timestamp
integer
必需
示例成功示例
{
"code": 200,
"success": true,
"msg": "获取成功",
"sign": "",
"result": {
"list": [
{
"count": 0,
"type": "机器码"
},
{
"count": 0,
"type": "IP"
},
{
"count": 0,
"type": "账号"
}
]
},
"timestamp": 1647275362752
}
最后修改时间: 3 年前