Skip to main content

Update Order

PUT /v1/order/:id

Modifies an existing order by updating its fields such as payment information, status, or other order details. The endpoint validates all changes against the current order state and business rules before saving. Returns the complete updated order object with all current values and timestamps reflecting when the changes were applied.

Request Body

{
"payment": {
"email": "email@example.com",
"reference": "reference-number",
"method": {
"type": "invoice",
"provider": null
}
}
}