POST Api/Service/Order/ChangeOrderStatus
变更订单状态
Request Information
URI Parameters
None.
Body Parameters
设置参数
SpeedPower.Utility.Models.Project.Orders.Service.UpdateOrderStatusModelName | Description | Type | Additional information |
---|---|---|---|
OrderId |
父级ID |
globally unique identifier |
None. |
Status |
订单状态 |
SpeedPower.Utility.Models.Project.Orders.Enums.OrderStatusType |
None. |
Remarks |
备注内容 |
string |
String length: inclusive between 0 and 500 |
Request Formats
application/json, text/json
Sample:
{ "OrderId": "3a1ebc5a-cbb8-4e0c-9fb2-36b8d8d72a3e", "Status": 1, "Remarks": "sample string 2" }
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" }