# 分页查看邀请码使用记录

# 调用方式: GET

# 接口地址:

https://api.freelog.com/v2/testQualifications/beta/codes/usedRecords
1

# URL传入参数说明:

参数 必选 类型及范围 说明
skip 可选 int 分页跳过的数量.默认为0
limit 可选 int 每页获取的数量.1-100之间
code 可选 string 邀请码
keywords 可选 string 搜索关键字.用户名

# 返回说明:

返回值字段 字段类型 字段说明
userId int 使用者ID
username int 使用者用户名
loginIp string 使用者IP地址
code string 邀请码
createDate date 使用时间

# 返回示例

{
	"ret": 0,
	"errCode": 0,
	"errcode": 0,
	"msg": "success",
	"data": {
		"skip": 0,
		"limit": 10,
		"totalItem": 1,
		"dataList": [{
			"status": 0,
			"code": "ZTA1M2Y5",
			"userId": 50003,
			"username": "yu",
			"loginIp": "127.0.0.1",
			"createDate": "2020-12-07T06:19:45.776Z",
			"updateDate": "2020-12-07T06:19:45.776Z"
		}]
	}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20