POST api/Member/AddRecharge
A13:会员余额充值
Request Information
URI Parameters
None.
Body Parameters
AppRechargeInput| Name | Description | Type | Additional information |
|---|---|---|---|
| MemberGUID |
会员 |
string |
None. |
| RechargeMoney |
充值金额 |
integer |
None. |
| RechargePay |
充值支付方式 支付方式 1 微信 2 支付宝 4 银行卡 |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"MemberGUID": "sample string 1",
"RechargeMoney": 2,
"RechargePay": 3
}
application/xml, text/xml
Sample:
<AppRechargeInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RuitingCC.Solution.Model.ViewModel"> <MemberGUID>sample string 1</MemberGUID> <RechargeMoney>2</RechargeMoney> <RechargePay>3</RechargePay> </AppRechargeInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
A13:会员余额充值
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>