Cancel Auction
POST/private/NftCancelAuction
Cancel NFT auction. This method accepts an array of auction identifiers to cancel. Returns an array of statuses for the attempted cancel action.
Request
- application/x-www-form-urlencoded
Body
required
auction_ids string[]required
Array of auction ids to cancel
nonce int64required
Nonce used in construction of API-Sign
header
otp stringnullable
Responses
- 200
Response
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
error string[]required
result objectnullable
statuses object[]required
Array of canceled auction statuses
id stringrequired
Auction id
reason stringnullable
Optional cancel reason
status stringrequired
Cancel status
{
"error": [
"EGeneral:Invalid arguments"
],
"result": {
"statuses": [
{
"id": "string",
"reason": "string",
"status": "string"
}
]
}
}
{
"error": [],
"result": {
"statuses": [
{
"id": "AGZGTN-DQLBQ-OPBMT7",
"status": "cancelled",
"reason": "None"
}
]
}
}
Loading...