Service capabilities: get the order latest info from LME
request url:host:port/server/gateway/order/query
SDK request class:QueryOrderRequest
request parameter data:
| parameter name | description | is required | parameter type |
|---|---|---|---|
| outOrderNo | FALSE | string | |
| channel | FALSE | string | |
| orderNo | FALSE | string |
demo:
{
"outOrderNo": "",
"channel": "",
"orderNo": ""
}
SDK response class:OpResponse
response data:
| parameter name | description | parameter type | |
|---|---|---|---|
| code | int32 | ||
| message | string | ||
| displayable | boolean | ||
| data | OrderResponseDTO | OrderResponseDTO | |
| orderNo | string | ||
| outOrderNo | string | ||
| channel | string | ||
| parcelQty | int32 | ||
| preTimeStart | string | ||
| preTimeEnd | string | ||
| cargoDesc | string | ||
| cargoDetail | string | ||
| totalLength | number | ||
| totalWidth | number | ||
| totalHeight | number | ||
| volume | number | ||
| totalWeight | number | ||
| totalNetWeight | number | ||
| orderStage | see the status flow | int32 | |
| stageStatus | see the status flow | int32 | |
| preDeliverWarehouseName | Deliver Warehouse Name | ||
| remark | string | ||
| packageType | PackageType | PackageType | |
| packageCode | int32 | ||
| packageType | string | ||
| packageInternationalId | string | ||
| poster | ContactResponseDTO | ContactResponseDTO | |
| orderNo | string | ||
| company | string | ||
| contact | string | ||
| tel | string | ||
| mobile | string | ||
| string | |||
| zoneCode | string | ||
| country | string | ||
| province | string | ||
| city | string | ||
| county | string | ||
| address | string | ||
| postCode | string | ||
| gps | string | ||
| taxNo | string | ||
| addressType | int32 | ||
| receiver | ContactResponseDTO | ContactResponseDTO | |
| orderNo | string | ||
| company | string | ||
| contact | string | ||
| tel | string | ||
| mobile | string | ||
| string | |||
| zoneCode | string | ||
| country | string | ||
| province | string | ||
| city | string | ||
| county | string | ||
| address | string | ||
| postCode | string | ||
| gps | string | ||
| taxNo | string | ||
| addressType | int32 | ||
| success | boolean |
demo:
{
"code":0,
"message":"",
"displayable":true,
"data":{
"id":"",
"orderNo":"",
"outOrderNo":"",
"channel":"",
"parcelQty":0,
"preTimeStart":"",
"preTimeEnd":"",
"cargoDesc":"",
"cargoDetail":"",
"totalLength":0,
"totalWidth":0,
"totalHeight":0,
"volume":0,
"totalWeight":0,
"totalNetWeight":0,
"orderStage":0,
"stageStatus":0,
"preDeliverWarehouseName":"",
"remark":"",
"packageType":{
"packageCode":0,
"packageType":"",
"packageInternationalId":""
},
"poster":{
"orderNo":"",
"company":"",
"contact":"",
"tel":"",
"mobile":"",
"email":"",
"zoneCode":"",
"country":"",
"province":"",
"city":"",
"county":"",
"address":"",
"postCode":"",
"gps":"",
"taxNo":"",
"addressType":0
},
"receiver":{
"orderNo":"",
"company":"",
"contact":"",
"tel":"",
"mobile":"",
"email":"",
"zoneCode":"",
"country":"",
"province":"",
"city":"",
"county":"",
"address":"",
"postCode":"",
"gps":"",
"taxNo":"",
"addressType":0
}
},
"success":true
}