ShipHero MCP Server

update_product

Modify product details in ShipHero by updating existing product data using a JSON string and the product ID. Ensures accurate inventory and catalog management.

Input Schema

NameRequiredDescriptionDefault
product_dataYesJSON string containing the updated product data
product_idYesThe ID of the product to update

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "product_data": { "description": "JSON string containing the updated product data", "type": "string" }, "product_id": { "description": "The ID of the product to update", "type": "string" } }, "required": [ "product_id", "product_data" ], "type": "object" }
ID: 86hw9j6m2j