delete_product
Remove a specific product from the ShipHero MCP Server by providing its unique product ID, streamlining product management and inventory updates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
product_id | Yes | The ID of the product to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"product_id": {
"description": "The ID of the product to delete",
"type": "string"
}
},
"required": [
"product_id"
],
"type": "object"
}