文档
测试

我的榜单列表

POST
/api/my/ranking/list

请求头

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

响应参数

参数名
类型
描述
必填
code
int
示例:1
必填
msg
string
示例:成功
必填
data
object
数据字典
必填
count
int
列表数量
必填
list
array
数据列表
必填
user_rank_list_id
string
榜单ID, 为空则为默认榜单
必填
title
string
榜单名称
必填
user_age_type
int
用户类型,0:成年榜,1:青年榜
必填
user_type
int
1: 团队 0:个人
必填
address
string
城市
必填

说明 / 示例

```json { "code": 1, "msg": "成功", "data": { "count": 3, "list": [ { "user_rank_list_id": "", "title": "深圳市个人成年榜", "user_age_type": 0, "user_type": 0, "address": "深圳市" }, { "user_rank_list_id": "", "title": "全国个人成年榜", "user_age_type": 0, "user_type": 0, "address": "深圳市" }, { "user_age_type": "1", "user_type": "0", "address": "深圳市", "user_rank_list_id": "68413844799623168", "title": "深圳市个人青年榜" } ] } }