Update Tracking Status

With this API, users can easily update the tracking status without having to manually edit it in their account settings. This saves time and ensures that the tracking status is always up to date.

Endpoint #

The Voomerr Update Tracking Status endpoint is POST https://admin.voomerr.com/api/update-tracking-status.php

Request Parameters #

Parameter Type Description
tracking_number string The tracking number of the shipment.
slug string The slug or carrier code of the shipping company.
job_id integer The ID of the job for which the tracking status is updated.

Response Parameters #

Parameter Type Description
success boolean Whether the API call was successful or not.
message string A message describing the result of the API call. If the call was unsuccessful, an error message is returned.

Request Example #

json
{
"tracking_number": "1234567890",
"slug": "ups",
"job_id": 1234
}

Response Example #

json
{
"success": true,
"message": "Tracking status updated successfully."
}

Powered by BetterDocs