GET api/OpenWebApi/GetWarehouseExpressList?WarehouseCode={WarehouseCode}
获取仓库快递发货渠道列表
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
WarehouseCode |
仓库代码,不传值或者传空值查询所有渠道 |
string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
ResultOfListOfExpressName | Description | Type | Additional information |
---|---|---|---|
Status | ResultStatusCode |
None. |
|
Msg | string |
None. |
|
Data | Collection of Express |
None. |
Response Formats
application/json, text/json
Sample:
{ "Status": 200, "Msg": "sample string 1", "Data": [ { "WarehouseCode": "sample string 1", "ExpressName": "sample string 2" }, { "WarehouseCode": "sample string 1", "ExpressName": "sample string 2" } ] }
application/xml, text/xml
Sample:
<ResultOfArrayOfExpresslT2OjdAF xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OpenWebApi.Models"> <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/OpenWebApi.Models.Response"> <d2p1:Express> <d2p1:ExpressName>sample string 2</d2p1:ExpressName> <d2p1:WarehouseCode>sample string 1</d2p1:WarehouseCode> </d2p1:Express> <d2p1:Express> <d2p1:ExpressName>sample string 2</d2p1:ExpressName> <d2p1:WarehouseCode>sample string 1</d2p1:WarehouseCode> </d2p1:Express> </Data> <Msg>sample string 1</Msg> <Status>Success</Status> </ResultOfArrayOfExpresslT2OjdAF>