Version: 202601
Update market product prices
PUT/openapi/2026-01/markets/:id/products/price
Set or remove fixed prices of products in a market.
Request
Path Parameters
id stringrequired
Market ID
- application/json
- Body
- Example
Bodyrequired
- Array [
update: set the fixed price (fixed_price required)delete: remove the fixed price and restore exchange-rate conversion- ]
products object[]required
Per-product fixed-price operations
idstringrequired
Product ID
operationstringrequired
Operation type. Allowed values:
fixed_pricestring
Fixed price as a string priced in the market currency. Required when operation is update; ignored when operation is delete
{
"products": [
{
"id": "string",
"operation": "string",
"fixed_price": "string"
}
]
}
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
codestring
error code
messagestring
error message
data object
object
{
"code": "string",
"message": "string",
"data": {}
}