Modify Auction
POST/private/NftModifyAuction
Modify NFT auction. Modifies an existing NFT auction. This method accepts the auction identifier and the new details. In the response, the method returns the identifier of the auction.
Request
- application/x-www-form-urlencoded
Body
required
- MOD1
- MOD2
- MOD3
- MOD4
- MOD1
- MOD2
- MOD3
- MOD4
ask_price object
Only for Fixed price auction type New auction ask price set by the seller
oneOf
string
integer
number
object
auction_id stringrequired
Auction id
nonce int64required
Nonce used in construction of API-Sign
header
otp stringnullable
reserve_price object
Only for Descending auction type New auction reserve price, minimum price at which the item can be sold
oneOf
string
integer
number
object
Responses
- 200
Response
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string[]required
result objectnullable
auction_id stringrequired
Auction id
{
"error": [
"EGeneral:Invalid arguments"
],
"result": {
"auction_id": "string"
}
}
{
"error": [],
"result": {
"auction_id": "AT2POJ-4CH3O-4TH6JH"
}
}
Loading...