delete_product
Remove a product from the ShipStation system by specifying the product ID to manage inventory and product listings effectively.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
productId | Yes | Product ID to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"productId": {
"description": "Product ID to delete",
"type": "number"
}
},
"required": [
"productId"
],
"type": "object"
}