Delete Shipping Label
Delete a shipping label that was previously created. Use the shipmentId returned by the Create Shipping Label endpoint.
POST /shipping/delete
Request
Headers
| Header | Value |
|---|---|
Authorization | Bearer <your_api_token> |
Content-Type | application/json |
Body Parameters
| Field | Type | Required | Description |
|---|---|---|---|
increment_id | integer | Yes | The shipment ID to delete (returned as shipmentId from /shipping/create) |
Example
{
"increment_id": 230432
}Response
Returns 200 OK on success with no body.
| Code | Description |
|---|---|
200 | Successful operation — label deleted |
400 | Invalid order / bad request |
Deleting a label is irreversible. Make sure the shipment has not been handed to the carrier before deleting.
Last updated on