Skip to main content

Void

POST /api/customer/void-labels

Voids one or more labels. Accepts either the short-form packageId (e.g., P0001311322) or the full tracking number (e.g., 15255P0326260001311322).

warning

This action cannot be undone once processed.

  • URL: https://parcelconnect.apc-pli.com/api/customer/void-labels
  • Auth: HTTP Basic — see Authentication.

Request

curl -X POST -H "Authorization: Basic {{basic_token}}" \
-H "Content-Type: application/json" \
-d '[
"15255P1029250000007738",
"P0123456789"
]' \
"https://parcelconnect.apc-pli.com/api/customer/void-labels"

Response

[
{ "success": true, "message": "Package voided successfully", "packageId": "P0000959990" },
{ "success": true, "message": "Package voided successfully", "packageId": "P0123456789" }
]