currency_exchange_rates

Update existing currency exchange rate.

Used to update a single currency exchange rate by its ID. Including the from/to currency is optional.

put/v1/exchange-rates/{id}

Path parameters

idstring required
Example:123

The ID of the currency exchange rate.

Headers

X-Trace-Idstring uuid
Example:40c71bbb-c676-4f24-83cf-cc725d7d7a00

Unique identifier associated with this request.

Request body

datestring date required

The date to which the exchange rate is applicable.

ratestring string required

The exchange rate from the base currency to the destination currency.

fromstring string nullable

The base currency code.

tostring string nullable

The destination currency code.

Example request

{
  "date": "2026-08-01",
  "rate": "2.3456",
  "from": "USD",
  "to": "EUR"
}

Response

Updated exchange rate stored, result in response

Changes

No recorded changes to this endpoint across all 1 revision of this API.