# 查看内测资格申请详情
# 调用方式: GET
# 接口地址:
url1:https://api.freelog.com/v2/testQualifications/beta/apply/current
url2:https://api.freelog.com/v2/testQualifications/beta/apply/{recordId}
1
2
2
# URL传入参数说明:
参数 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
recordId | 必须 | string | 申请记录ID |
# 返回说明:
返回值字段 | 字段类型 | 字段说明 |
---|---|---|
recordId | string | 申请记录ID |
userId | int | 申请用户ID |
username | string | 申请用户名 |
province | string | 省份 |
city | string | 城市 |
occupation | string | 职业 |
description | string | 申请附加描述信息 |
auditMsg | string | 审核信息描述 |
operationUserId | int | 审核人ID |
status | int | 状态 0:待审核 1:审核通过 2:审核不通过 |
createDate | date | 申请时间 |
# 返回示例
{
"ret": 0,
"errCode": 0,
"errcode": 0,
"msg": "success",
"data": {
"recordId": "5fd078ab96b87124a4d99288",
"province": "广东",
"city": "广州",
"occupation": "游戏开发",
"description": "公众号:abcd",
"auditMsg": "耗汁尾汁",
"operationUserId": 50003,
"status": 2,
"userId": 50003,
"username": "yu",
"createDate": "2020-12-09T07:11:39.528Z",
"updateDate": "2020-12-09T07:49:14.932Z"
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
← 申请内测资格 修改用户邀请码使用次数 →