获取分销商信息
获取分销信息
- URL: /partner/queryDistributorInfo
-
命令: HTTP GET/POST
-
Response格式
| 参数名称 | 参数类型 | 参数说明 |
|---|---|---|
| status | int | 状态码,0表示成功 |
| msg | String | 描述信息 |
| distributorServiceInfoList | Object[] | 分销商服务列表 |
| distributorBalance | int | 分销预付款越(单位分) |
- 分销服务列表对象
| 参数名称 | 参数类型 | 参数说明 |
|---|---|---|
| distributorType | int | 分销商服务类型 |
| distributorDesc | String | 分销商服务描述 |
| distributorStopTime | long | 分销服务截止时间(时间戳) |
- 返回示例
{
"result":{
"distributorInfoList":[
{
"distributorDesc":"VIP会员",
"distributorStopTime":1585584000000,
"distributorType":6
}
],
"distributorBalance":47875375,
"status":0,
"msg":""
}
}