hold_order_until
Delay processing of a specific order in ShipStation by specifying the order ID and a hold date using this tool. Manage order workflows efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
holdUntilDate | Yes | Date to hold until (YYYY-MM-DD) | |
orderId | Yes | Order ID to hold |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"holdUntilDate": {
"description": "Date to hold until (YYYY-MM-DD)",
"type": "string"
},
"orderId": {
"description": "Order ID to hold",
"type": "number"
}
},
"required": [
"orderId",
"holdUntilDate"
],
"type": "object"
}