文档
测试

项目类型列表

POST
/api/match/event/list

请求头

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

响应参数

参数名
类型
描述
必填
code
int
响应状态值
必填
msg
string
响应信息
必填
data
Object
响应数据
必填
count
int
数据总条数
必填
list
Object
数据列表
必填
match_event_id
string
数据ID
必填
match_event_title
string
赛事项目名
必填

说明 / 示例

返回示例: ```json { "code": 1, "msg": "success", "data": { "count": 4, "list": [ { "match_event_id": "26395191044739072", "match_event_title": "1万米" }, { "match_event_id": "26395465863925760", "match_event_title": "半马" }, { "match_event_id": "26395613834776576", "match_event_title": "全马" }, { "match_event_id": "46306242456457216", "match_event_title": "挑战赛" } ] } } ```