Skip to content
Last updated

Hold Order Until

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

Requirements:

  • You'll need an orderId to make this API call.
  • Find that orderId in your response from the Create/Update Order endpoint if you are creating orders via the API.
  • If you're importing orders from a marketplace, you can list orders to find the orderId.
curl -i -X POST \
  -u <username>:<password> \
  https://ssapi.shipstation.com/orders/holduntil \
  -H 'Content-Type: application/json' \
  -d '{
    "orderId": 1072467,
    "holdUntilDate": "2014-12-01"
  }'
Loading...