POST api/ClientApp/friend/user/list
[已完成] 下级用户列表
Request Information
URI Parameters
None.
Body Parameters
FriendUserListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| last_id |
最后一条记录的ID,传 0 则返回第一页的数据 |
integer |
None. |
| clientType |
客户端类型,默认值:website |
string |
None. |
| clientVersion |
客户端版本,默认值:1.0.0 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"last_id": 1,
"clientType": "sample string 2",
"clientVersion": "sample string 3"
}
Response Information
Resource Description
FriendUserListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| FriendUsers |
下级用户列表 |
Collection of FriendUser |
None. |
| code |
1 为成功,其他为失败 |
integer |
None. |
| msg |
请求描述 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"FriendUsers": [
{
"user_id": 1,
"nick_name": "sample string 2",
"avatar": "sample string 3",
"comm_payin": 4.0,
"comm_payout": 5.0,
"comm_balance": 6.0,
"deposit_balance": 7.0
},
{
"user_id": 1,
"nick_name": "sample string 2",
"avatar": "sample string 3",
"comm_payin": 4.0,
"comm_payout": 5.0,
"comm_balance": 6.0,
"deposit_balance": 7.0
}
],
"code": 1,
"msg": "sample string 2"
}