Hold Order Until

This method will change the status of the given order to On Hold until the date specified, when the status will automatically change to Awaiting Shipment.

The body of this request should specify the following attributes:

Name Data Type Description
orderId number, required Identifies the order that will be held.
holdUntilDate string, required Date when order is moved from on_hold status to awaiting_shipment.

Example Request

POST /orders/holduntil HTTP/1.1
Host: ssapi.shipstation.com
Authorization: __YOUR_AUTH_HERE__ 
Content-Type: application/json

{
  "orderId": 1072467,
  "holdUntilDate": "2014-12-01"
}

Example Response

{
  "success": true,
  "message": "Order held successfully."
}