| GET,POST | /pointAddress/UpdatePointAddress | 修改提货点信息 |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ID | body | int | Yes | 自增ID |
| PointCode | body | string | Yes | 提货点代码 |
| PointName | body | string | Yes | 提货点名称 |
| UserName | 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 | Yes | 修改人 |
| 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/UpdatePointAddressRequest HTTP/1.1
Host: bookinglogin.hart-worldwide.com
Content-Type: text/jsv
Content-Length: length
{
ID: 0,
PointCode: String,
PointName: String,
UserName: String,
PhoneNumber: String,
Province: 0,
City: 0,
Area: 0,
Address: String,
Remarks: String,
UpdateBy: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
IsOK: False,
ErrorCode: 0,
ErrorMsg: String
}