Version: 202601
Update market price
PUT/openapi/2026-01/markets/:id/price
Change a market's base currency, price adjustment and local-currency display. Custom exchange rate is not supported.
Request
Path Parameters
id stringrequired
Market ID
- application/json
- Body
- Example
Bodyrequired
currencystringrequired
Base currency, ISO 4217 three-letter code in upper case (e.g., USD). Must be supplied with the current currency even when only adjusting price. Switching currency clears all fixed prices already set for products in this market
price_adjustint32
Price adjustment percentage. Range -99 to 999; positive raises price, negative lowers it. Pass 0 for no adjustment
local_currency_enabledboolean
Whether the local-currency display is enabled for this market
{
"currency": "string",
"price_adjust": 0,
"local_currency_enabled": true
}
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
codestring
error code
messagestring
error message
data object
object
{
"code": "string",
"message": "string",
"data": {}
}