Table of Contents
This API is used to track the shipment details of a package using the tracking number.
Endpoint #
The Voomerr Tracking Shipment endpoint is GET https://admin.voomerr.com/api/track-shipment.php
Request Parameters:
Parameter | Type | Required | Description |
---|---|---|---|
tracking_number | string | Yes | The tracking number of the shipment to be tracked. |
Response Parameters: #
Parameter | Type | Description |
---|---|---|
status | string | The status of the shipment. |
status_details | string | Additional details regarding the shipment status. |
last_update | string | The date and time of the last update to the shipment status. |
location | string | The location of the last update to the shipment status. |
delivery_date | string | The expected delivery date of the shipment, if available. |
message | string | A message containing additional information about the shipment status. |
Request Example #
javascript
https://admin.voomerr.com/track-shipment.php?tracking_number=1234567890
Response Example #
json
{
"status": "Out for Delivery",
"status_details": "Your package is out for delivery.",
"last_update": "2023-02-28 15:30:00",
"location": "New York, NY",
"delivery_date": "2023-03-01",
"message": ""
}