Mun design
  1. Public Orders
Mun design
  • Overview
  • Public Orders
    • Create Order
      POST
    • Update Order Status
      PUT
    • List Orders
      GET
    • Update Order
      PUT
    • Get Order
      GET
    • Cancel Order
      PUT
    • Delete Order
      DELETE
  • Public Webhooks
    • Register Webhook
      POST
    • Update Webhook
      PUT
    • Get Webhook
      GET
    • Delete Webhook
      DELETE
    • Test Webhook
      POST
  • Public Products
    • List Products
      GET
  1. Public Orders

Update Order

PUT
/orders/{order_id}
Update order (only quantity, and only for orders with status 'new')
Required API Key in header: X-API-Key

Request

Path Params

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Successful Response
Body

🟠422Parameter Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/orders/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "comment": "Please update the design as discussed",
    "description": "Updated description",
    "quantity": 200,
    "title": "Updated title"
}'
Response Response Example
200 - Example 1
{}
Modified at 2025-09-15 17:52:55
Previous
List Orders
Next
Get Order
Built with