ShipHero MCP Server

update_order

Modify existing order details in the ShipHero system by providing the order ID and updated JSON data for accurate and efficient order management.

Input Schema

NameRequiredDescriptionDefault
order_dataYesJSON string containing the updated order data
order_idYesThe ID of the order to update

Input Schema (JSON Schema)

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