POST Api/Service/Refund/AddRefundPayment
添加退票单收/付款记录
Request Information
URI Parameters
None.
Body Parameters
设置参数
SpeedPower.Utility.Models.Project.Orders.Service.AddRefundPaymentModelName | Description | Type | Additional information |
---|---|---|---|
RefundId |
父级ID |
globally unique identifier |
None. |
Confirmed |
是否已确认金额并操作完成 |
boolean |
None. |
Reconciled |
是否已对账 |
boolean |
None. |
RefundPrice |
退票金额 |
decimal number |
None. |
CostPrice |
退票手续费 |
decimal number |
None. |
TransactionId |
交易流水号 |
string |
String length: inclusive between 0 and 200 |
Remarks |
备注内容 |
string |
String length: inclusive between 0 and 500 |
Request Formats
application/json, text/json
Sample:
{ "RefundId": "5fa897f8-c61a-462b-81c3-8de9d07dd41b", "Confirmed": true, "Reconciled": true, "RefundPrice": 4.1, "CostPrice": 5.1, "TransactionId": "sample string 6", "Remarks": "sample string 7" }
Response Information
Resource Description
添加退票单收/付款记录
SpeedPower.Utility.Models.Helper.ResultMessageName | Description | Type | Additional information |
---|---|---|---|
Succeed |
操作是否成功 |
boolean |
None. |
Message |
操作消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Succeed": true, "Message": "sample string 2" }