Counter NFT Offer
POST/private/NftCounterOffer
Creates a counteroffer for an existing offer. This method accepts the identifier of the original offer along with a new asking price and currency. In the response, the method returns the identifier of the auction.
Request
- application/x-www-form-urlencoded
Body
required
- MOD1
- MOD2
- MOD3
ask_price object required
Counter offer ask price
oneOf
string
integer
number
currency stringrequired
Counter offer currency
expire_time uint32nullable
Optional expiry time
nonce int64required
Nonce used in construction of API-Sign
header
offer_id stringrequired
Original offer id
otp stringnullable
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"
}
}
{
"result": {
"auction_id": "AYRRX3-JAJVV-IF2HHD"
},
"error": []
}
Loading...