delete_order
Remove an order from the ShipStation API by specifying the order ID. This tool ensures accurate order management by permanently deleting the selected order.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
orderId | Yes | Order ID to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"orderId": {
"description": "Order ID to delete",
"type": "number"
}
},
"required": [
"orderId"
],
"type": "object"
}