create_return
Process return requests for specific orders using JSON return data, enabling streamlined order management within the ShipHero MCP Server environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
order_id | Yes | The ID of the order to create a return for | |
return_data | Yes | JSON 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"
}