POST api/store/confirmDelivery?orderId={orderId}&isOrder={isOrder}&driverId={driverId}
确认提货,确认提货时,只确认当前订单在当前仓库的信息。
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderId |
订单id |
integer |
Required |
| isOrder |
是否是用户下单?(true:用户下单;false:基地提货) |
boolean |
Required |
| driverId | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
ResponseBase| Name | Description | Type | Additional information |
|---|---|---|---|
| errcode |
错误码,默认为成功:SUCCESS |
string |
None. |
| errmsg |
错误信息,默认为:成功 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"errcode": "sample string 1",
"errmsg": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.WebApi"> <errcode>sample string 1</errcode> <errmsg>sample string 2</errmsg> </ResponseBase>