POST api/wifibb/updatepayment
修改支付信息
Request Information
URI Parameters
None.
Body Parameters
UpdatePaymentInfoReqContractName | Description | Type | Additional information |
---|---|---|---|
PaidSuccess |
是否成功 |
boolean |
None. |
OrderId |
订单id |
integer |
None. |
OrderCode |
订单编码 |
string |
None. |
PaymentGateway |
付款方式 |
string |
None. |
PaidDate |
付款日期 |
date |
None. |
PayAmt |
付款金额 |
decimal number |
None. |
PaymentMessage |
付款信息 |
string |
None. |
Token |
token |
string |
None. |
PayeeID |
PayeeID |
string |
None. |
CreateDate |
创建日期 |
date |
None. |
Request Formats
application/json, text/json
Sample:
{ "PaidSuccess": true, "OrderId": 2, "OrderCode": "sample string 3", "PaymentGateway": "sample string 4", "PaidDate": "2024-12-23T19:37:15.8397285+08:00", "PayAmt": 6.0, "PaymentMessage": "sample string 7", "Token": "sample string 8", "PayeeID": "sample string 9", "CreateDate": "2024-12-23T19:37:15.8397285+08:00" }
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
修改支付信息
ReturnResultOfUpdatePaymentInfoRespContractName | Description | Type | Additional information |
---|---|---|---|
data | UpdatePaymentInfoRespContract |
None. |
|
code |
状态码:100成功,其他自定义 |
integer |
None. |
message |
提示消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "data": { "OrderID": 1, "OrderCode": "sample string 2" }, "code": 1, "message": "sample string 2" }