Cancel Offer
POST/private/NftCancelOffer
Cancel NFT offer. This method accepts an array of offer identifiers to cancel. Returns an array of statuses for the attempted cancel action.
Request
- application/x-www-form-urlencoded
Body
required
nonce int64required
Nonce used in construction of API-Sign
header
offer_ids string[]required
Array of offer ids to cancel
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 offers statuses
id stringrequired
Offer id
reason stringnullable
Optional cancel reason
status stringrequired
Cancel status
{
"error": [
"EGeneral:Invalid arguments"
],
"result": {
"statuses": [
{
"id": "string",
"reason": "string",
"status": "string"
}
]
}
}
{
"result": {
"statuses": [
{
"id": "ON4LK46-LJSMF-5HHO65",
"status": "cancelled",
"reason": null
}
]
},
"error": []
}
Loading...