GET api/MallV770/OrderExpressInfo?orderId={orderId}&sign={sign}&stamp={stamp}
订单的物流信息
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderId | integer |
Required |
|
| sign | string |
Default value is |
|
| stamp | string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
ZaiMieApp.WebApi.ViewModel.ResultDataMsgOfZaiMieApp.WebApi.ViewModel.LogisticInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| code | integer |
None. |
|
| data | ZaiMieApp.WebApi.ViewModel.LogisticInfo |
None. |
|
| addcoin | integer |
None. |
|
| message | string |
None. |
|
| page | integer |
None. |
|
| allPage | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"code": 2,
"data": {
"logisticCode": "sample string 1",
"name": "sample string 2",
"reason": "sample string 3",
"stateDesc": "sample string 4",
"traces": [
{
"acceptStation": "sample string 1",
"acceptTime": "sample string 2"
},
{
"acceptStation": "sample string 1",
"acceptTime": "sample string 2"
}
]
},
"addcoin": 3,
"message": "sample string 4",
"page": 5,
"allPage": 6
}
application/xml, text/xml
Sample:
<ResultDataMsgOfLogisticInfoPr2Hy9OI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZaiMieApp.WebApi.ViewModel">
<addcoin>3</addcoin>
<allPage>6</allPage>
<code>2</code>
<data>
<logisticCode>sample string 1</logisticCode>
<name>sample string 2</name>
<reason>sample string 3</reason>
<stateDesc>sample string 4</stateDesc>
<traces>
<Trace>
<acceptStation>sample string 1</acceptStation>
<acceptTime>sample string 2</acceptTime>
</Trace>
<Trace>
<acceptStation>sample string 1</acceptStation>
<acceptTime>sample string 2</acceptTime>
</Trace>
</traces>
</data>
<message>sample string 4</message>
<page>5</page>
<success>true</success>
</ResultDataMsgOfLogisticInfoPr2Hy9OI>