Error 1070014ΒΆ

If you encounter error 1070014, ShipmentId or Tracking Number could not be found, check the following:

When deleting a shipment, make sure the API call uses the Shipment ID as a request parameter. This error can occur if you mistakenly use the Transaction ID as a request parameter instead of the Shipment ID.

The Shipment ID is returned in the response to the Create Shipment API call:

{
  "fromAddress": { ... },
  "toAddress": { ... },
  "parcel": { ... },
  "rates": [ ... ],
  "shipmentId": "USPS2200041979902644",
  "parcelTrackingNumber": "9405509898641490903472",
  "documents": [ ... ]
}


Back to Error Codes.