create_order
Process and submit order data as a JSON string to manage and create orders within the ShipHero MCP Server, streamlining order management workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
order_data | Yes | JSON string containing the order data |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"order_data": {
"description": "JSON string containing the order data",
"type": "string"
}
},
"required": [
"order_data"
],
"type": "object"
}