POST Api/Service/Refund/ManualChannelRefundTicket
渠道退票确认请求
Request Information
URI Parameters
None.
Body Parameters
请求模型
SpeedPower.Utility.Models.Project.Orders.Service.Automatic.ManualChannelRefundTicketRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RefundId |
退票单ID |
globally unique identifier |
None. |
| Accepted |
是否同意退票 |
boolean |
None. |
| SettingKey |
渠道源扩展Key |
string |
String length: inclusive between 0 and 500 |
| SettingValue |
渠道源扩展Value |
string |
None. |
| RefundMessage |
退票操作消息 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"RefundId": "e1b06a12-c8ec-4f4f-b060-c903e6dbca6c",
"Accepted": true,
"SettingKey": "sample string 3",
"SettingValue": "sample string 4",
"RefundMessage": "sample string 5"
}
Response Information
Resource Description
渠道退票确认请求
SpeedPower.Utility.Models.Helper.ResultMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Succeed |
操作是否成功 |
boolean |
None. |
| Message |
操作消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Succeed": true,
"Message": "sample string 2"
}