Update the status of an order
PUT/orders/status/{id or ordernumber}
Updates the status of a specific order.
Parameters |
id or ordernumber |
The unique id/number of the order |
Request body |
Order Status |
Example request
Content-Type: application/json; charset=utf-8
{
"name": "Complete"
}
Example response
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"updated": 1
}