文档
测试

获取空运物流详情

POST
http://quyan4pl-gateway-dev.c8dfd77cdee5247d388409f67eae91522.cn-shanghai.alicontainer.com/newdragon/tracking/airDetail

接口描述

出口业务可以一样使用

请求头

参数名
类型
描述
必填
Content-Type
application/json
必填
Authorization
Bearer+空格+acces_token
必填

请求参数

参数名
类型
描述
必填
ibdInfoList
数组
可批量查询
必填
referenceno
string
空运单号(必填)
必填
ibd
string
ibd(选填)
必填
type
int
1:进口,2:出口
必填

成功返回

参数名
类型
描述
必填
status
int
状态码
必填
msg
string
消息
必填
airDetails
必填
awbno
string
空运单号
必填
currentnode
string
当前节点状态码
必填
currentnodename
string
当前节点名称
必填
currentnodeplace
string
当前节点地点
必填
currentnodetime
string
当前节点时间
必填
statusList
list
历史节点状态列表
必填
statuscd
string
节点状态代码
必填
statedescription
string
节点名称
必填
statustime
string
节点时间
必填
statusplace
string
节点地点
必填
ibdList
list
ibd 货品名 列表
必填
referenceno
string
空运单号
必填
ibd
string
ibd
必填
productName
string
货名名
必填
atdDate
string
实际起飞时间
必填
ataDate
string
实际抵达时间
必填
etdDate
string
预估起飞时间
必填
etaDate
string
预估抵达时间
必填
org
string
始发站
必填
dst
string
目的站
必填
flightno
string
航班号
必填

说明 / 示例

**请求示例** url: http://quyan4pl-gateway-dev.c8dfd77cdee5247d388409f67eae91522.cn-shanghai.alicontainer.com/newdragon/tracking/airDetail **request** ```javascript { "type":1, "ibdInfoList":[ { "referenceno":"40313951403", "ibd":"33" } ] } ``` **response** ```javascript { "status": 0, "message": "成功", "airDetails": [ { "ibd": null, "productName": null, "awbno": "40313951403", "flightno": null, "org": null, "orgcd": null, "dst": null, "dstcd": null, "currentnode": "RCS", "currentnodename": "进仓", "currentnodeEnName": null, "currentnodetime": "2020-05-22 15:21:00", "atdDate": null, "ataDate": null, "etdDate": "2020-05-24 12:40:00", "etaDate": null, "currentnodeplace": "MXP", "carriercd": "PO", "carrier": null, "awbno2": "", "carriercd2": "", "carrier2": null, "awbno3": "", "carriercd3": "", "carrier3": null, "ibdList": [ { "referenceno": "40313951403", "ctnrno": null, "ibd": "33", "productName": "货品3" }, { "referenceno": "40313951403", "ctnrno": null, "ibd": "44", "productName": "货品4" } ], "statusList": [ { "awbno": "40313951403", "statuscd": "RCS", "statedescription": "进仓", "statedescriptionEn": null, "statustime": "2020-05-22 15:21:00", "statusplace": "MXP", "flightno": "", "isest": "N" }, { "awbno": "40313951403", "statuscd": "BKD", "statedescription": "订舱", "statedescriptionEn": "Booking Confirmed", "statustime": "2020-05-22 01:29:00", "statusplace": "MXP", "flightno": "KE8319", "isest": "N" } ] } ] } ```