Manage your trackings
URI | Method | Description |
---|---|---|
POST /trackings/post | POST | 创建单个运单号 |
GET /trackings/{carrier_code}/{tracking_number} | GET | 列出单个运单号物流信息 |
PUT /trackings/{carrier_code}/{tracking_number} | PUT | 修改单个运单号附加信息。如:订单号,商品标题,快递状态等。 |
DELETE /trackings/{carrier_code}/{tracking_number} | DELETE | 删除单个运单号 |
POST /trackings/batch | POST | 创建多个运单号 |
GET /trackings/get | GET | 获取多个单号的物流信息 |
POST /trackings/updatemore | POST | 修改多个运单号附加信息。如:订单号,商品标题,快递状态等。 |
POST /trackings/delete | POST | 删除多个运单号 |
POST /trackings/realtime | POST | 获取单个运单号实时物流信息 |
POST /trackings/update | POST | 修改运输商简码 |
GET /trackings/getuserinfo | GET | 查询用户剩余额度 |
GET /trackings/getstatusnumber | GET | 获取各个状态的包裹数量 |
POST /trackings/notupdate | POST | 设置部分单号不再更新 |
POST /trackings/remote | POST | 查询收货地址是否偏远 |
POST /trackings/costtime | POST | 获取快递时效结果 |
POST /trackings/aircargo | POST | 获取航空运单编号的跟踪结果 |
Content-Type: application/json
Trackingmore-Api-Key: YOUR_API_KEY
Param | 描述 |
---|---|
country | Country name or two code (eg:CN) |
postcode | zip code (Enter the city name if the country doesn't have zip codes) (eg:518131) |
company (optional) | remote company (eg:DHL) |
[
{
"country": "Japan",
"postcode": "7621094"
},{
"country": "NZ",
"postcode": "Papaaroha"
}
]
200
{
"meta": {
"code": 200,
"type": "Success",
"message": "The request was successful."
},
"data": {
"submitted": 2,
"other": [],
"remote": [{
"far_express_company": "ups",
"two_code": "JP",
"far_country": "Japan",
"far_city_postcode": "7621094"
}, {
"far_express_company": "tnt",
"two_code": "JP",
"far_country": "Japan",
"far_city_postcode": "7621094"
}, {
"far_express_company": "fedex",
"far_country": "New Zealand",
"two_code": "NZ",
"far_city_postcode": "papaaroha"
}],
"errors": []
}
}