Cancel Tracking

Effortlessly cancel tracking for shipments that are no longer needed, allowing you to stop tracking for canceled or unnecessary orders.

Cancel Tracking

POST /api/v1/shipping/cancel

Cancel the Tracking ID

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

trackingId

string

Tracking Id to be cancelled

Response

{
  "status": "SUCCESS",
  "trackingId": "1231244",
  "message": "Requested Tracking id has been cancelled"
}
curl --location -g 'https://wms.eshopbox.com/api/v1/shipping/cancel' \
--header 'Authorization: Bearer <Token>' \
--data '{
    "trackingId": "1231244"
}'

Last updated