Sign in

Update order

documented

Update details of an existing order.

PATCH /orders/{order_id}Ordersno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://merchant.revolut.com/api/1.0/orders/{{$order_id}}" \
  -X PATCH \
  -H "Authorization: Bearer {{REVOLUT_API_KEY}}" \
  -H "Revolut-Api-Version: {{$api_version}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"amount": {{$amount}}, "currency": "{{$currency}}", "description": "{{$description}}", "merchant_order_data": {"reference": "{{$merchant_order_data_reference}}"}}'