mallow docs

Update listing

POST
/v2/tx/fixed-price/update

Builds a transaction repricing an existing listing to newPrice, signed by seller.

The listing must exist and belong to seller. Nothing else about it changes — currency, timing, edition limit and whitelist configuration are all preserved. To change those, cancel the listing and create a new one.

Authorization

ApiKeyAuth
x-api-key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Reprices an existing listing. Nothing else changes — currency, timing, edition limit and whitelist configuration are preserved.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v2/tx/fixed-price/update" \  -H "Content-Type: application/json" \  -d '{    "seller": "string",    "asset": "string",    "newPrice": 1  }'
{  "result": {    "tx": "string"  }}