# 分页查看内测资格申请列表
# 调用方式: GET
# 接口地址:
https://api.freelog.com/v2/testQualifications/beta/apply
1
# URL传入参数说明:
参数 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
skip | 可选 | int | 跳过的数量.默认为0. |
limit | 可选 | int | 本次请求获取的数据条数.一般不允许超过100 |
status | 可选 | int | 状态 0:待审核 1:审核通过 2:审核不通过 默认全部 |
keywords | 可选 | string | 支持手机号,用户名或邮箱搜索 |
# 返回说明:
返回值字段 | 字段类型 | 字段说明 |
---|---|---|
recordId | string | 申请记录ID |
userId | int | 申请用户ID |
username | string | 申请用户名 |
string | 申请用户的邮箱 | |
mobile | string | 申请用户的手机号 |
province | string | 省份 |
city | string | 城市 |
occupation | string | 职业 |
description | string | 申请附加描述信息 |
auditMsg | string | 审核信息描述 |
remark | stirng | 备注 |
operationUserId | int | 审核人ID |
status | int | 状态 0:待审核 1:审核通过 2:审核不通过 |
createDate | date | 申请时间 |
latestLoginData | date | 申请用户最后登录日期 |
latestLoginIp | string | 申请用户最后登录IP |
# 返回示例
{
"ret": 0,
"errCode": 0,
"errcode": 0,
"msg": "success",
"data": {
"skip": 0,
"limit": 10,
"totalItem": 1,
"dataList": [{
"recordId": "5fd078ab96b87124a4d99288",
"operationUserId": 0,
"province": "广东",
"city": "广州",
"occupation": "游戏开发",
"description": "公众号:abcd",
"userId": 50003,
"username": "yu",
"email": "",
"mobile": "18923803593",
"latestLoginData": "2020-12-08T07:37:16.415Z",
"latestLoginIp": "127.0.0.1",
"createDate": "2020-12-09T07:11:39.528Z"
}]
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
← 分页查看邀请码使用记录 批量审核内测申请 →