GET api/driver/detail?orderId={orderId}&repositoryId={repositoryId}
取货信息详情
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderId |
订单Id |
integer |
Required |
| repositoryId |
仓库Id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ResponseOfDriverOrderModel| Name | Description | Type | Additional information |
|---|---|---|---|
| data | DriverOrderModel |
None. |
|
| errcode |
错误码,默认为成功:SUCCESS |
string |
None. |
| errmsg |
错误信息,默认为:成功 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": {
"OrderNo": "sample string 1",
"RecommendTime": "2025-12-26T20:18:07.8138249+08:00",
"Items": [
{
"VenderName": "sample string 1",
"ProductVarietyName": "sample string 2",
"ProductClassName": "sample string 3",
"Count": 4
},
{
"VenderName": "sample string 1",
"ProductVarietyName": "sample string 2",
"ProductClassName": "sample string 3",
"Count": 4
}
]
},
"errcode": "sample string 1",
"errmsg": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseOfDriverOrderModelUJ8Augit 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>
<data xmlns:d2p1="http://schemas.datacontract.org/2004/07/DataModel.Exchange.Response">
<d2p1:Items>
<d2p1:DriverOrderItemsModel>
<d2p1:Count>4</d2p1:Count>
<d2p1:ProductClassName>sample string 3</d2p1:ProductClassName>
<d2p1:ProductVarietyName>sample string 2</d2p1:ProductVarietyName>
<d2p1:VenderName>sample string 1</d2p1:VenderName>
</d2p1:DriverOrderItemsModel>
<d2p1:DriverOrderItemsModel>
<d2p1:Count>4</d2p1:Count>
<d2p1:ProductClassName>sample string 3</d2p1:ProductClassName>
<d2p1:ProductVarietyName>sample string 2</d2p1:ProductVarietyName>
<d2p1:VenderName>sample string 1</d2p1:VenderName>
</d2p1:DriverOrderItemsModel>
</d2p1:Items>
<d2p1:OrderNo>sample string 1</d2p1:OrderNo>
<d2p1:RecommendTime>2025-12-26T20:18:07.8138249+08:00</d2p1:RecommendTime>
</data>
</ResponseOfDriverOrderModelUJ8Augit>