# 查看用户签约数量
# 调用方式: GET
# 接口地址:
https://api.freelog.com/v2/contracts/count
1
# url传入参数说明:
参数 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
userIds | 必选 | string | 用户ID,多个使用逗号分隔 |
# 返回说明:
返回值字段 | 字段类型 | 字段说明 |
---|---|---|
userId | int | 用户ID |
signedContractCount | int | 已签约的总数 |
# 示例
{
"ret": 0,
"errCode": 0,
"errcode": 0,
"msg": "success",
"data": [{
"userId": 50021,
"signedContractCount": 3
}, {
"userId": 50022,
"signedContractCount": 0
}]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13