GET {version}/User/GetExpressInfo?orderNo={orderNo}

获得订单物流信息

Request Information

URI Parameters

NameDescriptionTypeAdditional information
orderNo

订单编码

string

Required

version

string

None.

Body Parameters

None.

Response Information

Resource Description

ExpressDto
NameDescriptionTypeAdditional information
LinkName

联系人

string

None.

LinkMobile

联系电话

string

None.

Address

收货地址

string

None.

ExpressName

快递公司

string

None.

ExpressNo

快递单号

string

None.

DataItems

快递信息列表

Collection of ExpressResponseData

None.

Response Formats

application/json, text/json

Sample:
{
  "LinkName": "sample string 1",
  "LinkMobile": "sample string 2",
  "Address": "sample string 3",
  "ExpressName": "sample string 4",
  "ExpressNo": "sample string 5",
  "DataItems": [
    {
      "Time": "sample string 1",
      "Ftime": "sample string 2",
      "Context": "sample string 3"
    },
    {
      "Time": "sample string 1",
      "Ftime": "sample string 2",
      "Context": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<ExpressDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eshikao.Models.User">
  <Address>sample string 3</Address>
  <DataItems xmlns:d2p1="http://schemas.datacontract.org/2004/07/Eshikao.Models.SDK">
    <d2p1:ExpressResponseData>
      <d2p1:Context>sample string 3</d2p1:Context>
      <d2p1:Ftime>sample string 2</d2p1:Ftime>
      <d2p1:Time>sample string 1</d2p1:Time>
    </d2p1:ExpressResponseData>
    <d2p1:ExpressResponseData>
      <d2p1:Context>sample string 3</d2p1:Context>
      <d2p1:Ftime>sample string 2</d2p1:Ftime>
      <d2p1:Time>sample string 1</d2p1:Time>
    </d2p1:ExpressResponseData>
  </DataItems>
  <ExpressName>sample string 4</ExpressName>
  <ExpressNo>sample string 5</ExpressNo>
  <LinkMobile>sample string 2</LinkMobile>
  <LinkName>sample string 1</LinkName>
</ExpressDto>