TTWUSA APIV2

出库管理

出库单物流节点信息

查询物流追踪节点。

POST
生产环境https://ssl.glitzcloud.com/agent/v1/orders/order/trackinfo
测试环境http://gztest.glitzcloud.com/agent/v1/orders/order/trackinfo

说明

1、功能名称:出库单物流节点信息

2、功能描述:出库单物流节点信息

鉴权说明

请参阅鉴权签名说明。

请求参数

名称类型必填示例值描述
store_nameStringThe Warehouse USA仓库名称
order_snStringorder001平台店铺订单编号

返回字段

参数类型示例值描述
order_snString85461421239平台店铺订单编号
track_numString1Z3Y17R40399552781001物流跟踪号
is_distributeInteger1是否更新物流跟踪信息
is_deliveredInteger0是否派送完成

示例

请求示例
{
    "format": "json",
    "apikey": "85082f5f62a811e684f500163e06045f",
    "randoms": 1234,
    "sign": "656d6fbe6b7dec6c2e77ffe27f04bd6d",
    "store_name": "The Warehouse USA",
    "order_sn": "order001"
}
返回示例
{
    "status": 200,
    "reqMsg": "ok",
    "result": {
        "order_sn": "85461421239",
        "track_info": [
            {
                "track_num": "1Z3Y17R40399552781001",
                "is_distribute": "0",
                "is_delivered": "0",
                "details": [
                    {
                        "time": "2017-03-02 09:46:17",
                        "description": "picked up"
                    },
                    {
                        "time": "2017-04-17 15:51:42",
                        "description": "packed"
                    },
                    {
                        "time": "2017-04-19 10:35:11",
                        "description": "shipped"
                    },
                    {
                        "time": "2017-04-18 12:57:29",
                        "description": "BILLING INFORMATION RECEIVED, , , , US"
                    },
                    {
                        "time": "2017-04-18 22:50:00",
                        "description": "ORIGIN SCAN, PHOENIX, AZ, , US"
                    }
                ]
            },
            {
                "track_num": "1Z3Y17R40399552781002",
                "is_distribute": "0",
                "is_delivered": "0",
                "details": [
                    {
                        "time": "2017-03-02 09:46:17",
                        "description": "picked up"
                    },
                    {
                        "time": "2017-04-17 15:51:42",
                        "description": "packed"
                    },
                    {
                        "time": "2017-04-19 10:35:11",
                        "description": "shipped"
                    },
                    {
                        "time": "2017-04-18 12:57:29",
                        "description": "BILLING INFORMATION RECEIVED, , , , US"
                    },
                    {
                        "time": "2017-04-18 22:50:00",
                        "description": "ORIGIN SCAN, PHOENIX, AZ, , US"
                    }
                ]
            }
        ]
    }
}
示例 3
{
    "status": 3502,
    "reqMsg": "The order has not been shipped",
    "result": []
}