简要描述
请求url
https://www.商城域名.com/index.php?s=/api/dealer/user
请求方式
是否需授权登录
请求header
参数名 |
类型 |
是否必须 |
示例值 |
说明 |
storeId |
int |
必填 |
10001 |
商城ID |
platform |
string |
必填 |
H5 |
当前请求的客户端(APP、小程序、H5等) |
Access-Token |
string |
选填 |
- |
当前登录用户的 Token |
返回示例
{
"status": 200,
"message": "success",
"data": {
"dealer": {
"user_id": 10125,
"real_name": "陈旭",
"mobile": "13000000000",
"money": "72875.98",
"freeze_money": "130323.50",
"total_money": "0.52",
"referee_id": 0,
"first_num": 0,
"second_num": 0,
"third_num": 0,
"user": {
"user_id": 10125,
"mobile": "130****0000",
"nick_name": "CC",
"avatar_id": 10738,
"gender": "未知",
"country": "",
"province": "",
"city": "",
"address_id": 10052,
"balance": "91624.50",
"points": 64,
"pay_money": "142655.51",
"expend_money": "1437.80",
"grade_id": 10001,
"platform": "MP-WEIXIN",
"last_login_time": 1645801346
},
"referee": null
}
}
}
返回参数
参数名 |
类型 |
示例值 |
说明 |
status |
int |
200 |
请求状态(200:请求成功;500:请求错误/失败) |
message |
string |
success |
请求结果的信息,默认为 success |
data |
object |
- |
返回的业务数据 |
data 参数
参数名 |
类型 |
示例值 |
说明 |
dealer |
object |
- |
当前分销商信息 |
data.dealer 参数
参数名 |
类型 |
示例值 |
说明 |
user_id |
int |
10125 |
分销商用户ID |
real_name |
string |
陈旭 |
姓名 |
mobile |
string |
13000000000 |
手机号 |
money |
string |
72875.98 |
当前可提现佣金 |
freeze_money |
string |
130323.50 |
已冻结佣金 |
total_money |
string |
0.52 |
累积提现佣金 |
referee_id |
int |
0 |
推荐人用户ID |
first_num |
int |
0 |
下级成员数量 (一级) |
second_num |
int |
0 |
下级成员数量 (二级) |
third_num |
int |
0 |
下级成员数量 (三级) |
user |
object |
- |
用户信息;可参考 “获取当前用户详情”API |
referee |
object |
- |
上级推荐人信息 |