POST Api/Service/Order/UpdateOrder

更新订单信息

Request Information

URI Parameters

None.

Body Parameters

设置参数

SpeedPower.Utility.Models.Project.Orders.Service.UpdateOrderModel
NameDescriptionTypeAdditional information
ID

订单ID

globally unique identifier

None.

SiteId

站点ID

string

Required

String length: inclusive between 0 and 128

OrderExternalNumber

外部订单号

string

Required

String length: inclusive between 0 and 128

LatestTime

最后处理时间

date

None.

ExternalTime

外部订单创建时间

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": "5d236962-c5c5-4d9f-8344-e3bdf9fae6eb",
  "SiteId": "sample string 2",
  "OrderExternalNumber": "sample string 3",
  "LatestTime": "2024-10-22T16:45:38.4578651+08:00",
  "ExternalTime": "2024-10-22T16:45:38.4578651+08:00"
}

Response Information

Resource Description

更新订单信息

SpeedPower.Utility.Models.Helper.ResultMessage
NameDescriptionTypeAdditional information
Succeed

操作是否成功

boolean

None.

Message

操作消息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Succeed": true,
  "Message": "sample string 2"
}