POST Api/Service/Refund/UpdateRefund
更新退票单信息
Request Information
URI Parameters
None.
Body Parameters
设置内容
SpeedPower.Utility.Models.Project.Orders.Service.UpdateRefundModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
退票单ID |
globally unique identifier |
None. |
| OrderId |
父级ID |
globally unique identifier |
None. |
| RefundExternalNumber |
外部退票单号 |
string |
Required String length: inclusive between 0 and 128 |
| RefundType |
退票单类型 |
SpeedPower.Utility.Models.Project.Orders.Enums.RefundType |
None. |
| RefundStyle |
退票单操作方式 |
SpeedPower.Utility.Models.Project.Orders.Enums.RefundStyleType |
None. |
| LatestTime |
最晚处理时间 |
date |
None. |
| Remarks |
备注内容 |
string |
String length: inclusive between 0 and 500 |
| ExternalTime |
退票单外部时间 |
date |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": "dfe5d698-1268-4a55-98b8-3a3a4e24660f",
"OrderId": "29492b5a-5f61-4ba2-b859-d8b18830ad5e",
"RefundExternalNumber": "sample string 3",
"RefundType": 0,
"RefundStyle": 0,
"LatestTime": "2026-06-24T05:29:50.2014389+08:00",
"Remarks": "sample string 4",
"ExternalTime": "2026-06-24T05:29:50.2014389+08:00"
}
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"
}