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.
- You'll need an
orderIdto make this API call. - Find that
orderIdin 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.
- Production Serverhttps://ssapi.shipstation.com/orders/holduntil
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
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...