ShipHero MCP Server

create_return

Process return requests for specific orders using JSON return data, enabling streamlined order management within the ShipHero MCP Server environment.

Input Schema

NameRequiredDescriptionDefault
order_idYesThe ID of the order to create a return for
return_dataYesJSON string containing the return data

Input Schema (JSON Schema)

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