Manage your trackings
URI | Method | Description |
---|---|---|
POST /trackings/post | POST | Create a tracking. |
GET /trackings/{carrier_code}/{tracking_number} | GET | Get tracking results of a single tracking. |
PUT /trackings/{carrier_code}/{tracking_number} | PUT | Modify order id, order title, shipment status and other additional fields of a single tracking. |
DELETE /trackings/{carrier_code}/{tracking_number} | DELETE | Delete a tracking. |
POST /trackings/batch | POST | Create multiple trackings. |
GET /trackings/get | GET | Get tracking results of multiple trackings. |
POST /trackings/updatemore | POST | Modify order id, order title, shipment status and other additional fields of multiple trackings. |
POST /trackings/delete | POST | Delete multiple trackings. |
POST /trackings/realtime | POST | Get realtime tracking results of a single tracking. |
POST /trackings/update | POST | Modify courier code |
GET /trackings/getuserinfo | GET | Get account info |
GET /trackings/getstatusnumber | GET | Get number of trackings in each package status. |
POST /trackings/notupdate | POST | Stop updating trackings |
POST /trackings/remote | POST | Check if a shipment is sent to remote area. |
POST /trackings/costtime | POST | Get courier aging results |
POST /trackings/aircargo | POST | Get tracking result of air waybill number |
Content-Type: application/json
Trackingmore-Api-Key: YOUR_API_KEY
Param | Description |
---|---|
tracking_number | Tracking number |
carrier_code |
Courier code. Check Courier Code |
title (optional) | Product title |
logistics_channel (optional) | Logistics channel of the tracking |
customer_name (optional) | Customer name. |
customer_email (optional) | Customer email. |
order_id (optional) | Order ID. |
destination_code (optional) | Destination two character country code (eg: us, cn, ca, ru...).Check country code list |
status (optional) | Change status.You can only change the state value to 4, 7 or 8. 4 means delivered, 7 means exception, 8 means return to the original status. |
archived (optional) | Batch edit the single number to archive by passing a true/false string. |
[
{
"tracking_number": "RP893531375SG",
"carrier_code": "singapore-post",
"title": "new title",
"customer_name": "sandy",
"customer_email": "[email protected]",
"order_id": "986574521568",
"destination_code": "CN",
"status": 7,
"archived": "true",
"logistics_channel": "4PX挂号小包"
}, {
"tracking_number": "LK894734223CN",
"carrier_code": "china-ems",
"customer_phone": "+22222222",
"title": "new title",
"customer_name": "sandy",
"customer_email": "[email protected]",
"order_id": "986574521568",
"destination_code": "CN",
"status": 7,
"archived": "false",
"logistics_channel": "4PX挂号小包"
}
]
200
{
"meta":{
"code": 200,
"type": "Success",
"message": "Success"
},
"data":{
"submitted": 2,
"updated": 2,
"trackings":[
{
"id": "084ccfaaa13ee78669e400252332cc4a",
"tracking_number": "RP893531375SG",
"carrier_code": "singapore-post",
"created_at": "2017-07-25T17:39:40+08:00",
"updated_at": "1970-01-01T08:00:00+08:00",
"customer_email": "[email protected]",
"customer_name": "sandy",
"order_id": "986574521568",
"title": "new title",
"destination_code": "CN",
"logistics_channel": "4PX挂号小包",
"archived": "true"
},{
"id": "5c8f48514e614777a448519242bb24fb",
"tracking_number": "LK894734223CN",
"carrier_code": "china-ems",
"created_at": "2017-07-25T17:39:40+08:00",
"updated_at": "1970-01-01T08:00:00+08:00",
"customer_email": "[email protected]",
"customer_name": "sandy",
"order_id": "986574521568",
"title": "new title",
"destination_code": "CN",
"logistics_channel": "4PX挂号小包",
"archived": "false"
}
]
}
}
Take your post-purchase order tracking experience to the next level