Restore Order from On Hold

This method will change the status of the given order from On Hold to Awaiting Shipment. This endpoint is used when a holdUntil Date is attached to an order.

The body of this request should specify the following attributes:

Name Data Type Description
orderId number, required Identifies the order that will be restored to awaiting_shipment from on_hold.

Example Request

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

{
  "orderId": 1234567
}

Example Response

{
  "success": true,
  "message": "The requested order has been restored"
}