Void Shipment Label

Voids the specified label by shipmentId. The body of this request should specify the following attributes:

Name Data Type Description
shipmentId number ID of the shipment to void.

Required

Example Request

POST /shipments/voidlabel HTTP/1.1
Host: ssapi.shipstation.com
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json

{
  "shipmentId": 12345
}

Example Response

{
  "approved": true,
  "message": "Label voided successfully"
}