restore_order_from_hold
Restores a held order in ShipStation using the specified order ID, enabling its processing and fulfillment via the ShipStation API MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
orderId | Yes | Order ID to restore |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"orderId": {
"description": "Order ID to restore",
"type": "number"
}
},
"required": [
"orderId"
],
"type": "object"
}