Update order
PUT/v1/orders/:orderId
Rate limit
32 requests per minuteReplaces the order identified by orderId with the full order payload provided in the request body. Send the complete order representation (the same shape used to create it), not a partial patch.
To change only the status, customer payment, or delivery information, prefer the dedicated /status, /payments, and /delivery endpoints. Returns 404 if no order matches the given orderId for this store.
Request
Responses
- 200
- 400
- 401
- 403
- 404
- 422
The order was successfully updated.
The request is malformed.
Invalid authorization.
Authorization not valid for the requested resource.
Resource not found.
The request body is not valid.