Creates multiple package tracking numbers in one batch request through TrackingMore’s tracking system.
This integration allows you to add multiple shippin... Read More
Creates multiple package tracking numbers in one batch request through TrackingMore’s tracking system.
This integration allows you to add multiple shipping tracking numbers to TrackingMore in a single request, rather than creating them one by one. You provide an array of tracking numbers along with their corresponding courier codes (like FedEx, USPS, Royal Mail, etc.), and TrackingMore will begin monitoring all of them for delivery updates. This is particularly useful when you need to set up tracking for multiple shipments at once, such as after processing a batch of orders.
Returns a response object containing data with two arrays: success (successfully created trackings with their assigned IDs, courier codes, and tracking numbers) and error (any trackings that failed to create). Also includes meta information with the response code and status message.
{
"data": {
"error": [],
"success": [
{
"id": "b25g127d18743e69843f411ff5d8c1c5",
"courier_code": "fedex",
"tracking_number": "892647391205"
},
{
"id": "b25g584415e5f2f4b47179e6df304dd6",
"courier_code": "usps",
"tracking_number": "9405511206213458392847"
}
]
},
"meta": {
"code": 200,
"message": "Request response is successful"
}
} Read Less