Accept NFT Offer
POST/private/NftAcceptOffer
Accept NFT offer. This method accepts the identifier of the offer to accept. Returns the identifier of the auction created.
Request
- application/x-www-form-urlencoded
Body
required
nonce int64required
Nonce used in construction of API-Sign
header
offer_id stringrequired
Offer id
otp stringnullable
pay_creator_fee booleannullable
Whether a user wants to pay a creator fee or no
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": "AYXTZ3-LE64M-LGTI6D"
}
}
Loading...