文档
测试

赛事下用户列表

POST
/admin/matchs/stage/user/list

请求头

参数名
类型
描述
必填
token
string
用户token
必填

请求参数

参数名
类型
描述
必填
page
int
页码
必填
limit
int
每页条是
必填
is_group
int
是否为个人参与,0:个人,1:团队
必填
sys_match_id
string
赛事ID
必填
matchs_stage_id
string
赛段ID
必填

响应参数

参数名
类型
描述
必填
code
int
响应状态值
必填
msg
string
响应信息
必填
data
Object
响应数据
必填
count
int
数据总条数
必填
limit
Object-Array
必填
matchs_user_id
string
用户报名ID
必填
name
string
用户名/团队名
必填
img
string
logo
必填
match_grade
float
当前用时
必填
match_ranking
int
当前排名
必填
is_group
int
是否为个人,0:个人,1:团队
必填
matchs_stage_id
string
赛段ID
必填
user_group_id
string
团队ID 与用户ID只会存在一个
必填
user_id
string
用户ID 与团队ID只会存在一个
必填

说明 / 示例

查询当前赛段下的用户列表 请求示例: ```json { "page":1, "limit":10, "is_group":1, "sys_match_id":"48994755022950400", "matchs_stage_id":"49000214572306432" } ``` 返回示例: ```json { "code": 1, "msg": "success", "data": { "count": 3, "list": [ { "matchs_user_id": "51030938443845632", "name": "麦凯莱张华东队", "img": "matchs_image/2021/03/2021-03-23/banner.png", "match_grade": 99.3621, "match_ranking": 1, "is_group": 1, "matchs_stage_id": "49000214572306432", "user_group_id": "46395305377140736" }, { "matchs_user_id": "51031979671425024", "name": "麦凯莱王珂队", "img": "matchs_image/2021/03/2021-03-23/banner.png", "match_grade": 2063.2, "match_ranking": 2, "is_group": 1, "matchs_stage_id": "49000214572306432", "user_group_id": "46395357487173632" }, { "matchs_user_id": "51030170248679424", "name": "南昌大学队", "img": "matchs_image/2021/05/2021-05-14/1ff23cc6e5f0c7a15ca21c15b13b9826.jpg", "match_grade": 2164.52, "match_ranking": 3, "is_group": 1, "matchs_stage_id": "49000214572306432", "user_group_id": "46026472443351040" } ] } } ```