void_label
Cancel shipping labels in ShipStation by submitting the shipment ID directly via the API. Simplify label voiding for order management and fulfillment workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
shipmentId | Yes | Shipment ID of the label to void |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"shipmentId": {
"description": "Shipment ID of the label to void",
"type": "number"
}
},
"required": [
"shipmentId"
],
"type": "object"
}