| GET,POST | /order/UpdateOrder | 修改提货订单 |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| OrderNumber | body | string | Yes | 提货订单编号 |
| CorporateName | body | string | No | 公司名称 |
| BookingNumber | body | string | Yes | 商品订单编号 |
| BoxNmber | body | int | Yes | 总箱数 |
| BoxWeight | body | float | Yes | 总毛重(单位KG) |
| BoxCube | body | float | Yes | 总立方(单位立方) |
| LinkMan | body | string | Yes | 提货点联系人 |
| PhoneNumber | body | string | Yes | 提货点联系人手机 |
| Province | body | int | Yes | 地址省份 |
| City | body | int | Yes | 地址市 |
| Area | body | int | Yes | 地址区县 |
| Address | body | string | Yes | 地址详情 |
| Remarks | body | string | No | 备注 |
| UpdateBy | body | string | No | 修改人 |
| GoodCargoTime | body | DateTime? | No | 货好时间 |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| IsOK | form | bool | Yes | 是否成功 |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ErrorCode | form | int | Yes | 返回编码,200之外的值都表示有错误 |
| ErrorMsg | form | string | Yes | 返回的消息 |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsv/reply/UpdateOrderRequest HTTP/1.1
Host: bookinglogin.hart-worldwide.com
Content-Type: text/jsv
Content-Length: length
{
OrderNumber: String,
CorporateName: String,
BookingNumber: String,
BoxNmber: 0,
BoxWeight: 0,
BoxCube: 0,
LinkMan: String,
PhoneNumber: String,
Province: 0,
City: 0,
Area: 0,
Address: String,
Remarks: String,
UpdateBy: String,
GoodCargoTime: 0001-01-01
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
IsOK: False,
ErrorCode: 0,
ErrorMsg: String
}