POST api/ClientApp/friend/user/comm_change
[已完成] 下级用户费率修改
Request Information
URI Parameters
None.
Body Parameters
FriendUserCommChangeRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| friend_user_id |
Payout 任务ID |
integer |
Required |
| comm_payin |
代收佣金 |
decimal number |
Required |
| comm_payout |
代付佣金 |
decimal number |
Required |
| clientType |
客户端类型,默认值:website |
string |
None. |
| clientVersion |
客户端版本,默认值:1.0.0 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"friend_user_id": 1,
"comm_payin": 1.0,
"comm_payout": 1.0,
"clientType": "sample string 1",
"clientVersion": "sample string 2"
}
Response Information
Resource Description
BaseResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| code |
1 为成功,其他为失败 |
integer |
None. |
| msg |
请求描述 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": 1,
"msg": "sample string 2"
}